pub struct DirectAccess {
pub access: DirectAccessType,
pub index: Box<AstNode>,
}Fields§
§access: DirectAccessType§index: Box<AstNode>Trait Implementations§
Source§impl Clone for DirectAccess
impl Clone for DirectAccess
Source§fn clone(&self) -> DirectAccess
fn clone(&self) -> DirectAccess
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 DirectAccess
impl Debug for DirectAccess
Source§impl<'de> Deserialize<'de> for DirectAccesswhere
'de: 'static,
impl<'de> Deserialize<'de> for DirectAccesswhere
'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 DirectAccess
impl PartialEq for DirectAccess
Source§fn eq(&self, other: &DirectAccess) -> bool
fn eq(&self, other: &DirectAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DirectAccess
impl Serialize for DirectAccess
Source§impl<'__deriveMoreLifetime> TryFrom<&'__deriveMoreLifetime AstStatement> for &'__deriveMoreLifetime DirectAccess
impl<'__deriveMoreLifetime> TryFrom<&'__deriveMoreLifetime AstStatement> for &'__deriveMoreLifetime DirectAccess
Source§type Error = TryIntoError<&'__deriveMoreLifetime AstStatement>
type Error = TryIntoError<&'__deriveMoreLifetime AstStatement>
The type returned in the event of a conversion error.
Source§impl<'__deriveMoreLifetime> TryFrom<&'__deriveMoreLifetime mut AstStatement> for &'__deriveMoreLifetime mut DirectAccess
impl<'__deriveMoreLifetime> TryFrom<&'__deriveMoreLifetime mut AstStatement> for &'__deriveMoreLifetime mut DirectAccess
Source§type Error = TryIntoError<&'__deriveMoreLifetime mut AstStatement>
type Error = TryIntoError<&'__deriveMoreLifetime mut AstStatement>
The type returned in the event of a conversion error.
Source§impl TryFrom<AstStatement> for DirectAccess
impl TryFrom<AstStatement> for DirectAccess
Source§type Error = TryIntoError<AstStatement>
type Error = TryIntoError<AstStatement>
The type returned in the event of a conversion error.
Source§impl Walker for DirectAccess
impl Walker for DirectAccess
fn walk<V>(&self, visitor: &mut V)where
V: AstVisitor,
Source§impl WalkerMut for DirectAccess
impl WalkerMut for DirectAccess
fn walk<V>(&mut self, visitor: &mut V)where
V: AstVisitorMut,
impl StructuralPartialEq for DirectAccess
Auto Trait Implementations§
impl Freeze for DirectAccess
impl RefUnwindSafe for DirectAccess
impl Send for DirectAccess
impl Sync for DirectAccess
impl Unpin for DirectAccess
impl UnsafeUnpin for DirectAccess
impl UnwindSafe for DirectAccess
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