pub enum AddressValue<'ast> {
Implicit(Address<'ast>),
Explicit(AddressTyped<'ast>),
}Variants§
Implicit(Address<'ast>)
Explicit(AddressTyped<'ast>)
Trait Implementations§
Source§impl<'ast> Clone for AddressValue<'ast>
impl<'ast> Clone for AddressValue<'ast>
Source§fn clone(&self) -> AddressValue<'ast>
fn clone(&self) -> AddressValue<'ast>
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<'ast> Debug for AddressValue<'ast>
impl<'ast> Debug for AddressValue<'ast>
Source§impl<'ast> Display for AddressValue<'ast>
impl<'ast> Display for AddressValue<'ast>
Source§impl<'ast> FromPest<'ast> for AddressValue<'ast>
impl<'ast> FromPest<'ast> for AddressValue<'ast>
Source§impl<'ast> PartialEq for AddressValue<'ast>
impl<'ast> PartialEq for AddressValue<'ast>
impl<'ast> StructuralPartialEq for AddressValue<'ast>
Auto Trait Implementations§
impl<'ast> Freeze for AddressValue<'ast>
impl<'ast> RefUnwindSafe for AddressValue<'ast>
impl<'ast> Send for AddressValue<'ast>
impl<'ast> Sync for AddressValue<'ast>
impl<'ast> Unpin for AddressValue<'ast>
impl<'ast> UnsafeUnpin for AddressValue<'ast>
impl<'ast> UnwindSafe for AddressValue<'ast>
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