pub enum DelayedData {
TerminalIdentifier(Box<TerminalIdentifier>),
WithMintypmax(Box<DelayedDataWithMintypmax>),
}
Variants§
TerminalIdentifier(Box<TerminalIdentifier>)
WithMintypmax(Box<DelayedDataWithMintypmax>)
Trait Implementations§
Source§impl Clone for DelayedData
impl Clone for DelayedData
Source§fn clone(&self) -> DelayedData
fn clone(&self) -> DelayedData
Returns a copy 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 DelayedData
impl Debug for DelayedData
Source§impl<'a> From<&'a DelayedData> for RefNode<'a>
impl<'a> From<&'a DelayedData> for RefNode<'a>
Source§fn from(x: &'a DelayedData) -> RefNode<'a>
fn from(x: &'a DelayedData) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a DelayedData> for RefNodes<'a>
impl<'a> From<&'a DelayedData> for RefNodes<'a>
Source§fn from(x: &'a DelayedData) -> RefNodes<'a>
fn from(x: &'a DelayedData) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<DelayedData> for AnyNode
impl From<DelayedData> for AnyNode
Source§fn from(x: DelayedData) -> AnyNode
fn from(x: DelayedData) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a DelayedData
impl<'a> IntoIterator for &'a DelayedData
Source§impl PartialEq for DelayedData
impl PartialEq for DelayedData
Source§impl<'a> TryFrom<&'a DelayedData> for Locate
impl<'a> TryFrom<&'a DelayedData> for Locate
Source§impl TryFrom<AnyNode> for DelayedData
impl TryFrom<AnyNode> for DelayedData
Source§impl TryFrom<DelayedData> for Locate
impl TryFrom<DelayedData> for Locate
impl StructuralPartialEq for DelayedData
Auto Trait Implementations§
impl Freeze for DelayedData
impl RefUnwindSafe for DelayedData
impl Send for DelayedData
impl Sync for DelayedData
impl Unpin for DelayedData
impl UnwindSafe for DelayedData
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