pub struct RecordLitField {
pub name: String,
pub value: Expr,
}Fields§
§name: String§value: ExprTrait Implementations§
Source§impl Clone for RecordLitField
impl Clone for RecordLitField
Source§fn clone(&self) -> RecordLitField
fn clone(&self) -> RecordLitField
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 RecordLitField
impl Debug for RecordLitField
Source§impl<'de> Deserialize<'de> for RecordLitField
impl<'de> Deserialize<'de> for RecordLitField
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 RecordLitField
impl PartialEq for RecordLitField
Source§fn eq(&self, other: &RecordLitField) -> bool
fn eq(&self, other: &RecordLitField) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordLitField
impl Serialize for RecordLitField
impl StructuralPartialEq for RecordLitField
Auto Trait Implementations§
impl Freeze for RecordLitField
impl RefUnwindSafe for RecordLitField
impl Send for RecordLitField
impl Sync for RecordLitField
impl Unpin for RecordLitField
impl UnsafeUnpin for RecordLitField
impl UnwindSafe for RecordLitField
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