pub struct DriverStartArgs {Show 13 fields
pub node: Option<ClientEnd<Node, Channel>>,
pub symbols: Option<Vec<NodeSymbol>>,
pub url: Option<String>,
pub program: Option<Dictionary>,
pub incoming: Option<Vec<ComponentNamespaceEntry>>,
pub outgoing_dir: Option<ServerEnd<Directory, Channel>>,
pub config: Option<Vmo>,
pub node_name: Option<String>,
pub node_properties: Option<Vec<NodePropertyEntry>>,
pub node_offers: Option<Vec<Offer>>,
pub node_token: Option<Event>,
pub node_properties_2: Option<Vec<NodePropertyEntry2>>,
pub vmar: Option<Vmar>,
}
Expand description
Arguments for starting a driver.
Fields§
§node: Option<ClientEnd<Node, Channel>>
§symbols: Option<Vec<NodeSymbol>>
§url: Option<String>
§program: Option<Dictionary>
§incoming: Option<Vec<ComponentNamespaceEntry>>
§outgoing_dir: Option<ServerEnd<Directory, Channel>>
§config: Option<Vmo>
§node_name: Option<String>
§node_properties: Option<Vec<NodePropertyEntry>>
§node_offers: Option<Vec<Offer>>
§node_token: Option<Event>
§node_properties_2: Option<Vec<NodePropertyEntry2>>
§vmar: Option<Vmar>
Trait Implementations§
Source§impl CompatFrom<DriverStartArgs> for DriverStartArgs
impl CompatFrom<DriverStartArgs> for DriverStartArgs
Source§fn compat_from(value: DriverStartArgs) -> Self
fn compat_from(value: DriverStartArgs) -> Self
Converts
value
into a value of this type.Source§impl CompatFrom<DriverStartArgs> for DriverStartArgs
impl CompatFrom<DriverStartArgs> for DriverStartArgs
Source§fn compat_from(value: DriverStartArgs) -> Self
fn compat_from(value: DriverStartArgs) -> Self
Converts
value
into a value of this type.Source§impl Debug for DriverStartArgs
impl Debug for DriverStartArgs
Source§impl Default for DriverStartArgs
impl Default for DriverStartArgs
Source§fn default() -> DriverStartArgs
fn default() -> DriverStartArgs
Returns the “default value” for a type. Read more
Source§impl Encodable for DriverStartArgs
impl Encodable for DriverStartArgs
Source§type Encoded = WireDriverStartArgs<'static>
type Encoded = WireDriverStartArgs<'static>
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self, Self::Encoded> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, Self::Encoded> = _
Whether the conversion from
Self
to Self::Encoded
is equivalent to copying the raw bytes
of Self
. Read moreSource§impl<___E> Encode<___E> for DriverStartArgswhere
___E: Encoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for DriverStartArgswhere
___E: Encoder + ?Sized + HandleEncoder,
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 PartialEq for DriverStartArgs
impl PartialEq for DriverStartArgs
impl StructuralPartialEq for DriverStartArgs
Auto Trait Implementations§
impl Freeze for DriverStartArgs
impl RefUnwindSafe for DriverStartArgs
impl Send for DriverStartArgs
impl Sync for DriverStartArgs
impl Unpin for DriverStartArgs
impl UnwindSafe for DriverStartArgs
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
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T, W> FromWireOption<WireBox<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<WireBox<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: WireBox<'_, W>) -> Option<T>
fn from_wire_option(wire: WireBox<'_, W>) -> Option<T>
Converts the given
wire
to an option of this type.§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T
to [Self
]