pub struct DriverStartArgs {
pub node: ClientEnd<NodeMarker>,
pub node_name: String,
pub properties: NodePropertyDictionary2,
pub symbols: Option<Vec<NodeSymbol>>,
pub offers: Vec<Offer>,
pub start_info: ComponentStartInfo,
pub component_instance: Event,
}Fields§
§node: ClientEnd<NodeMarker>§node_name: String§properties: NodePropertyDictionary2§symbols: Option<Vec<NodeSymbol>>§offers: Vec<Offer>§start_info: ComponentStartInfo§component_instance: EventAuto 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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more