Struct rsonpath::result::nodes::NodesResult
source · pub struct NodesResult { /* private fields */ }
Expand description
Implementations§
source§impl NodesResult
impl NodesResult
sourcepub fn iter_as_utf8(&self) -> impl IntoIterator<Item = Result<&str, Utf8Error>>
pub fn iter_as_utf8(&self) -> impl IntoIterator<Item = Result<&str, Utf8Error>>
Iterate over all slices interpreted as valid UTF8.
sourcepub fn into_inner(self) -> Vec<Vec<u8>>
pub fn into_inner(self) -> Vec<Vec<u8>>
Return the inner buffers consuming the result.
Trait Implementations§
source§impl Clone for NodesResult
impl Clone for NodesResult
source§fn clone(&self) -> NodesResult
fn clone(&self) -> NodesResult
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 NodesResult
impl Debug for NodesResult
source§impl Default for NodesResult
impl Default for NodesResult
source§fn default() -> NodesResult
fn default() -> NodesResult
Returns the “default value” for a type. Read more
source§impl Display for NodesResult
impl Display for NodesResult
source§impl From<NodesResult> for Vec<Vec<u8>>
impl From<NodesResult> for Vec<Vec<u8>>
source§fn from(result: NodesResult) -> Self
fn from(result: NodesResult) -> Self
Converts to this type from the input type.
source§impl Hash for NodesResult
impl Hash for NodesResult
source§impl Ord for NodesResult
impl Ord for NodesResult
source§fn cmp(&self, other: &NodesResult) -> Ordering
fn cmp(&self, other: &NodesResult) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<NodesResult> for NodesResult
impl PartialEq<NodesResult> for NodesResult
source§fn eq(&self, other: &NodesResult) -> bool
fn eq(&self, other: &NodesResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<NodesResult> for NodesResult
impl PartialOrd<NodesResult> for NodesResult
source§fn partial_cmp(&self, other: &NodesResult) -> Option<Ordering>
fn partial_cmp(&self, other: &NodesResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for NodesResult
impl StructuralEq for NodesResult
impl StructuralPartialEq for NodesResult
Auto Trait Implementations§
impl RefUnwindSafe for NodesResult
impl Send for NodesResult
impl Sync for NodesResult
impl Unpin for NodesResult
impl UnwindSafe for NodesResult
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