pub struct PropertyImplementation {
pub kind: PropertyKind,
pub datatype: DataTypeDeclaration,
pub location: SourceLocation,
pub variable_blocks: Vec<VariableBlock>,
pub body: Vec<AstNode>,
pub end_location: SourceLocation,
}Fields§
§kind: PropertyKind§datatype: DataTypeDeclaration§location: SourceLocation§variable_blocks: Vec<VariableBlock>§body: Vec<AstNode>§end_location: SourceLocationTrait Implementations§
Source§impl Clone for PropertyImplementation
impl Clone for PropertyImplementation
Source§fn clone(&self) -> PropertyImplementation
fn clone(&self) -> PropertyImplementation
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 PropertyImplementation
impl Debug for PropertyImplementation
Source§impl<'de> Deserialize<'de> for PropertyImplementationwhere
'de: 'static,
impl<'de> Deserialize<'de> for PropertyImplementationwhere
'de: 'static,
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 PropertyImplementation
impl PartialEq for PropertyImplementation
Source§fn eq(&self, other: &PropertyImplementation) -> bool
fn eq(&self, other: &PropertyImplementation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyImplementation
impl Serialize for PropertyImplementation
impl StructuralPartialEq for PropertyImplementation
Auto Trait Implementations§
impl Freeze for PropertyImplementation
impl RefUnwindSafe for PropertyImplementation
impl Send for PropertyImplementation
impl Sync for PropertyImplementation
impl Unpin for PropertyImplementation
impl UnsafeUnpin for PropertyImplementation
impl UnwindSafe for PropertyImplementation
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