pub struct UseRunner {
pub source: Option<Ref>,
pub source_name: Option<String>,
pub source_dictionary: Option<String>,
}
Expand description
Declares runner used by a component.
Fields§
§source: Option<Ref>
§source_name: Option<String>
§source_dictionary: Option<String>
Trait Implementations§
Source§impl Encodable for UseRunner
impl Encodable for UseRunner
Source§type Encoded = WireUseRunner
type Encoded = WireUseRunner
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl TakeFrom<WireUseRunner> for UseRunner
impl TakeFrom<WireUseRunner> for UseRunner
Source§fn take_from(from: &WireUseRunner) -> Self
fn take_from(from: &WireUseRunner) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for UseRunner
impl RefUnwindSafe for UseRunner
impl Send for UseRunner
impl Sync for UseRunner
impl Unpin for UseRunner
impl UnwindSafe for UseRunner
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