pub struct ValueOperation<'a> {
pub name: Loc<&'a str>,
pub type_annotation: Option<Loc<TypeAnnotation>>,
pub equals_token: Loc<()>,
pub op: Loc<ValueOperationOp<'a>>,
pub semi_token: Loc<()>,
}
Fields§
§name: Loc<&'a str>
§type_annotation: Option<Loc<TypeAnnotation>>
§equals_token: Loc<()>
§op: Loc<ValueOperationOp<'a>>
§semi_token: Loc<()>
Auto Trait Implementations§
impl<'a> Freeze for ValueOperation<'a>
impl<'a> RefUnwindSafe for ValueOperation<'a>
impl<'a> Send for ValueOperation<'a>
impl<'a> Sync for ValueOperation<'a>
impl<'a> Unpin for ValueOperation<'a>
impl<'a> UnwindSafe for ValueOperation<'a>
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