pub struct ExtractVar {
pub name: String,
pub value: ExtractValue,
}Expand description
Extract variable definition
Fields§
§name: String§value: ExtractValueImplementations§
Trait Implementations§
Source§impl Clone for ExtractVar
impl Clone for ExtractVar
Source§fn clone(&self) -> ExtractVar
fn clone(&self) -> ExtractVar
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 ExtractVar
impl Debug for ExtractVar
Source§impl<'de> Deserialize<'de> for ExtractVar
impl<'de> Deserialize<'de> for ExtractVar
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExtractVar
impl PartialEq for ExtractVar
Source§impl Serialize for ExtractVar
impl Serialize for ExtractVar
impl StructuralPartialEq for ExtractVar
Auto Trait Implementations§
impl Freeze for ExtractVar
impl RefUnwindSafe for ExtractVar
impl Send for ExtractVar
impl Sync for ExtractVar
impl Unpin for ExtractVar
impl UnsafeUnpin for ExtractVar
impl UnwindSafe for ExtractVar
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