pub struct RunnerRegistration {
pub source_name: Option<String>,
pub source: Option<Ref>,
pub target_name: Option<String>,
}
Expand description
A repository of the runners available in an environment.
Fields§
§source_name: Option<String>
§source: Option<Ref>
§target_name: Option<String>
Trait Implementations§
Source§impl Clone for RunnerRegistration
impl Clone for RunnerRegistration
Source§fn clone(&self) -> RunnerRegistration
fn clone(&self) -> RunnerRegistration
Returns a copy of the value. Read more
1.0.0 · 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 RunnerRegistration
impl Debug for RunnerRegistration
Source§impl Encodable for RunnerRegistration
impl Encodable for RunnerRegistration
Source§type Encoded = WireRunnerRegistration
type Encoded = WireRunnerRegistration
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<___E> Encode<___E> for RunnerRegistrationwhere
___E: Encoder + ?Sized,
impl<___E> Encode<___E> for RunnerRegistrationwhere
___E: Encoder + ?Sized,
Source§impl TakeFrom<WireRunnerRegistration> for RunnerRegistration
impl TakeFrom<WireRunnerRegistration> for RunnerRegistration
Source§fn take_from(from: &WireRunnerRegistration) -> Self
fn take_from(from: &WireRunnerRegistration) -> 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 RunnerRegistration
impl RefUnwindSafe for RunnerRegistration
impl Send for RunnerRegistration
impl Sync for RunnerRegistration
impl Unpin for RunnerRegistration
impl UnwindSafe for RunnerRegistration
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