pub enum ProbeStepBin {
FastbootGetvarEq {
name: String,
equals: String,
},
FastbootGetvarStartsWith {
name: String,
starts_with: String,
},
FastbootGetvarNotEq {
name: String,
not_equals: String,
},
FastbootGetvarExists {
name: String,
},
FastbootGetvarNotExists {
name: String,
},
}Variants§
FastbootGetvarEq
FastbootGetvarStartsWith
FastbootGetvarNotEq
FastbootGetvarExists
FastbootGetvarNotExists
Trait Implementations§
Source§impl Clone for ProbeStepBin
impl Clone for ProbeStepBin
Source§fn clone(&self) -> ProbeStepBin
fn clone(&self) -> ProbeStepBin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProbeStepBin
impl Debug for ProbeStepBin
Source§impl<'de> Deserialize<'de> for ProbeStepBin
impl<'de> Deserialize<'de> for ProbeStepBin
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProbeStepBin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProbeStepBin, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ProbeStep> for ProbeStepBin
impl From<ProbeStep> for ProbeStepBin
Source§fn from(step: ProbeStep) -> ProbeStepBin
fn from(step: ProbeStep) -> ProbeStepBin
Converts to this type from the input type.
Source§impl From<ProbeStepBin> for ProbeStep
impl From<ProbeStepBin> for ProbeStep
Source§fn from(step: ProbeStepBin) -> ProbeStep
fn from(step: ProbeStepBin) -> ProbeStep
Converts to this type from the input type.
Source§impl Serialize for ProbeStepBin
impl Serialize for ProbeStepBin
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ProbeStepBin
impl RefUnwindSafe for ProbeStepBin
impl Send for ProbeStepBin
impl Sync for ProbeStepBin
impl Unpin for ProbeStepBin
impl UnsafeUnpin for ProbeStepBin
impl UnwindSafe for ProbeStepBin
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