pub struct AstOperation {
pub meta: Vec<AstMeta>,
pub id: AstIdentifier,
pub params: Vec<AstValue>,
pub targets: Vec<AstValue>,
}Fields§
§meta: Vec<AstMeta>§id: AstIdentifier§params: Vec<AstValue>§targets: Vec<AstValue>Trait Implementations§
Source§impl Clone for AstOperation
impl Clone for AstOperation
Source§fn clone(&self) -> AstOperation
fn clone(&self) -> AstOperation
Returns a duplicate of the value. Read more
1.0.0 · 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 AstOperation
impl Debug for AstOperation
Source§impl<'de> Deserialize<'de> for AstOperation
impl<'de> Deserialize<'de> for AstOperation
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
Auto Trait Implementations§
impl Freeze for AstOperation
impl RefUnwindSafe for AstOperation
impl Send for AstOperation
impl Sync for AstOperation
impl Unpin for AstOperation
impl UnwindSafe for AstOperation
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