pub struct CapabilityRef {
pub name: String,
pub path: Option<String>,
}Fields§
§name: StringContract id (matches one of the TOMLs under capabilities/).
path: Option<String>Optional path to a package-local TOML that overrides / defines this capability (for experimental providers not yet in the official capabilities directory). Relative to the package root.
Trait Implementations§
Source§impl Clone for CapabilityRef
impl Clone for CapabilityRef
Source§fn clone(&self) -> CapabilityRef
fn clone(&self) -> CapabilityRef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CapabilityRef
impl Debug for CapabilityRef
Source§impl<'de> Deserialize<'de> for CapabilityRef
impl<'de> Deserialize<'de> for CapabilityRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CapabilityRef
impl RefUnwindSafe for CapabilityRef
impl Send for CapabilityRef
impl Sync for CapabilityRef
impl Unpin for CapabilityRef
impl UnsafeUnpin for CapabilityRef
impl UnwindSafe for CapabilityRef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more