pub struct VariableAssignments {
pub span: Span,
pub assignments: Vec<VariableAssignment>,
}Expand description
a=1 b=2 c=3 as a free-standing prefix without a command.
Fields§
§span: Span§assignments: Vec<VariableAssignment>Trait Implementations§
Source§impl Clone for VariableAssignments
impl Clone for VariableAssignments
Source§fn clone(&self) -> VariableAssignments
fn clone(&self) -> VariableAssignments
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 VariableAssignments
impl Debug for VariableAssignments
Source§impl<'de> Deserialize<'de> for VariableAssignments
impl<'de> Deserialize<'de> for VariableAssignments
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 VariableAssignments
impl PartialEq for VariableAssignments
Source§impl Serialize for VariableAssignments
impl Serialize for VariableAssignments
impl StructuralPartialEq for VariableAssignments
Auto Trait Implementations§
impl Freeze for VariableAssignments
impl RefUnwindSafe for VariableAssignments
impl Send for VariableAssignments
impl Sync for VariableAssignments
impl Unpin for VariableAssignments
impl UnsafeUnpin for VariableAssignments
impl UnwindSafe for VariableAssignments
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