pub struct DataExprValue<V: Parse> {
pub ident: DataExpr,
pub value: V,
}Fields§
§ident: DataExpr§value: VTrait Implementations§
Source§impl<V: Parse> Parse for DataExprValue<V>
impl<V: Parse> Parse for DataExprValue<V>
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl<V> !Send for DataExprValue<V>
impl<V> !Sync for DataExprValue<V>
impl<V> Freeze for DataExprValue<V>where
V: Freeze,
impl<V> RefUnwindSafe for DataExprValue<V>where
V: RefUnwindSafe,
impl<V> Unpin for DataExprValue<V>where
V: Unpin,
impl<V> UnsafeUnpin for DataExprValue<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for DataExprValue<V>where
V: UnwindSafe,
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