#[repr(C)]pub struct WireDriverStartArgs<'de> { /* private fields */ }
Expand description
The wire type corresponding to DriverStartArgs
.
Implementations§
Source§impl<'de> WireDriverStartArgs<'de>
impl<'de> WireDriverStartArgs<'de>
pub fn node(&self) -> Option<&ClientEnd<WireChannel, Node>>
pub fn symbols(&self) -> Option<&WireVector<'de, WireNodeSymbol<'de>>>
pub fn url(&self) -> Option<&WireString<'de>>
pub fn program(&self) -> Option<&WireDictionary<'de>>
pub fn incoming( &self, ) -> Option<&WireVector<'de, WireComponentNamespaceEntry<'de>>>
pub fn outgoing_dir(&self) -> Option<&ServerEnd<WireChannel, Directory>>
pub fn config(&self) -> Option<&WireHandle>
pub fn node_name(&self) -> Option<&WireString<'de>>
pub fn node_properties( &self, ) -> Option<&WireVector<'de, WireNodePropertyEntry<'de>>>
pub fn node_offers(&self) -> Option<&WireVector<'de, WireOffer<'de>>>
pub fn node_token(&self) -> Option<&WireHandle>
pub fn node_properties_2( &self, ) -> Option<&WireVector<'de, WireNodePropertyEntry2<'de>>>
Trait Implementations§
Source§impl<'de> Debug for WireDriverStartArgs<'de>
impl<'de> Debug for WireDriverStartArgs<'de>
Source§impl<___D> Decode<___D> for WireDriverStartArgs<'static>where
___D: Decoder + ?Sized + HandleDecoder,
impl<___D> Decode<___D> for WireDriverStartArgs<'static>where
___D: Decoder + ?Sized + HandleDecoder,
Source§impl<'de> Drop for WireDriverStartArgs<'de>
impl<'de> Drop for WireDriverStartArgs<'de>
Source§impl<'de> FromWire<WireDriverStartArgs<'de>> for DriverStartArgs
impl<'de> FromWire<WireDriverStartArgs<'de>> for DriverStartArgs
Source§fn from_wire(wire: WireDriverStartArgs<'de>) -> Self
fn from_wire(wire: WireDriverStartArgs<'de>) -> Self
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl Wire for WireDriverStartArgs<'static>
impl Wire for WireDriverStartArgs<'static>
Source§type Decoded<'de> = WireDriverStartArgs<'de>
type Decoded<'de> = WireDriverStartArgs<'de>
The decoded wire type, restricted to the
'de
lifetime.Source§fn zero_padding(out: &mut MaybeUninit<Self>)
fn zero_padding(out: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl<'de> Freeze for WireDriverStartArgs<'de>
impl<'de> RefUnwindSafe for WireDriverStartArgs<'de>
impl<'de> !Send for WireDriverStartArgs<'de>
impl<'de> !Sync for WireDriverStartArgs<'de>
impl<'de> Unpin for WireDriverStartArgs<'de>
impl<'de> !UnwindSafe for WireDriverStartArgs<'de>
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