pub struct BinaryValue {
    pub nodes: (Locate, Vec<WhiteSpace>),
}Fields§
§nodes: (Locate, Vec<WhiteSpace>)Trait Implementations§
Source§impl Clone for BinaryValue
 
impl Clone for BinaryValue
Source§fn clone(&self) -> BinaryValue
 
fn clone(&self) -> BinaryValue
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 BinaryValue
 
impl Debug for BinaryValue
Source§impl<'a> From<&'a BinaryValue> for RefNode<'a>
 
impl<'a> From<&'a BinaryValue> for RefNode<'a>
Source§fn from(x: &'a BinaryValue) -> RefNode<'a>
 
fn from(x: &'a BinaryValue) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a BinaryValue> for RefNodes<'a>
 
impl<'a> From<&'a BinaryValue> for RefNodes<'a>
Source§fn from(x: &'a BinaryValue) -> RefNodes<'a>
 
fn from(x: &'a BinaryValue) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<BinaryValue> for AnyNode
 
impl From<BinaryValue> for AnyNode
Source§fn from(x: BinaryValue) -> AnyNode
 
fn from(x: BinaryValue) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a BinaryValue
 
impl<'a> IntoIterator for &'a BinaryValue
Source§impl PartialEq for BinaryValue
 
impl PartialEq for BinaryValue
Source§impl<'a> TryFrom<&'a BinaryValue> for Locate
 
impl<'a> TryFrom<&'a BinaryValue> for Locate
Source§impl TryFrom<AnyNode> for BinaryValue
 
impl TryFrom<AnyNode> for BinaryValue
Source§impl TryFrom<BinaryValue> for Locate
 
impl TryFrom<BinaryValue> for Locate
impl StructuralPartialEq for BinaryValue
Auto Trait Implementations§
impl Freeze for BinaryValue
impl RefUnwindSafe for BinaryValue
impl Send for BinaryValue
impl Sync for BinaryValue
impl Unpin for BinaryValue
impl UnwindSafe for BinaryValue
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