pub struct Unstructured<'a>(pub Vec<UnstrToken<'a>>);Tuple Fields§
§0: Vec<UnstrToken<'a>>Implementations§
Source§impl<'a> Unstructured<'a>
impl<'a> Unstructured<'a>
pub fn to_string_keep_obs(&self) -> String
Trait Implementations§
Source§impl<'a> Clone for Unstructured<'a>
impl<'a> Clone for Unstructured<'a>
Source§fn clone(&self) -> Unstructured<'a>
fn clone(&self) -> Unstructured<'a>
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<'a> ContainsUtf8 for Unstructured<'a>
impl<'a> ContainsUtf8 for Unstructured<'a>
fn contains_utf8(&self) -> bool
Source§impl<'a> Debug for Unstructured<'a>
impl<'a> Debug for Unstructured<'a>
Source§impl<'a> IntoBoundedStatic for Unstructured<'a>
impl<'a> IntoBoundedStatic for Unstructured<'a>
Source§type Static = Unstructured<'static>
type Static = Unstructured<'static>
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl<'a> PartialEq for Unstructured<'a>
impl<'a> PartialEq for Unstructured<'a>
Source§fn eq(&self, other: &Unstructured<'a>) -> bool
fn eq(&self, other: &Unstructured<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for Unstructured<'a>
Source§impl<'a> ToBoundedStatic for Unstructured<'a>
impl<'a> ToBoundedStatic for Unstructured<'a>
Auto Trait Implementations§
impl<'a> Freeze for Unstructured<'a>
impl<'a> RefUnwindSafe for Unstructured<'a>
impl<'a> Send for Unstructured<'a>
impl<'a> Sync for Unstructured<'a>
impl<'a> Unpin for Unstructured<'a>
impl<'a> UnsafeUnpin for Unstructured<'a>
impl<'a> UnwindSafe for Unstructured<'a>
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