pub struct CapabilityRef {
pub id: String,
pub detail: Option<String>,
}Expand description
Reference to a capability the runtime currently has wired up.
Fields§
§id: StringCapability identifier: “cdp_bound”, “native_input”, “vision”, “numbers_write_cells”, etc.
detail: Option<String>Free-form details (browser name + URL for cdp_bound, etc.).
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 (const: unstable) · 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