pub struct BackingStr<'a> { /* private fields */ }
Expand description
Convenience wrapper around the library core functions for string slices, removing some of the generic noise from function signatures.
Implementations§
Source§impl<'a> BackingStr<'a>
impl<'a> BackingStr<'a>
Sourcepub fn with(borrow: &'a str, p: Pointer) -> Self
pub fn with(borrow: &'a str, p: Pointer) -> Self
Instantiate a wrapper around the given string slice and pointer.
Sourcepub fn dotted<'de, T>(&self, pointer: &str) -> Result<T, Error>where
T: Deserialize<'de>,
'a: 'de,
pub fn dotted<'de, T>(&self, pointer: &str) -> Result<T, Error>where
T: Deserialize<'de>,
'a: 'de,
See the documentation of Pointer::dotted
.
§Example
use jsonp::BackingStr;
let json = r#"{"outer": {"array": [0, "one", true]}}"#;
let one: &str = BackingStr::new(json).dotted("outer.array.1").unwrap();
assert!(one == "one");
Sourcepub fn pattern<'de, T>(&self, pointer: &str, pattern: &str) -> Result<T, Error>where
T: Deserialize<'de>,
'a: 'de,
pub fn pattern<'de, T>(&self, pointer: &str, pattern: &str) -> Result<T, Error>where
T: Deserialize<'de>,
'a: 'de,
See the documentation of Pointer::with_pattern
.
§Example
use jsonp::BackingStr;
let json = r#"{"outer": {"array": [0, "one", true]}}"#;
let is_true: bool = BackingStr::new(json).pattern("outer array 2", " ").unwrap();
assert!(is_true);
Sourcepub fn pointer<'de, 'p, I, T>(&self, pointers: I) -> Result<T, Error>
pub fn pointer<'de, 'p, I, T>(&self, pointers: I) -> Result<T, Error>
See the documentation for Pointer::with_segments
.
§Example
use jsonp::{BackingStr, Segment};
let json = r#"{"outer": {"array": [0, 1, 2, 3]}}"#;
let segments = &["outer", "array"];
let array: Vec<i8> = BackingStr::new(json)
.pointer(segments.into_iter().copied().map(Segment::lazy))
.unwrap();
assert_eq!(&array, &[0, 1, 2, 3]);
Trait Implementations§
Source§impl<'a> Clone for BackingStr<'a>
impl<'a> Clone for BackingStr<'a>
Source§fn clone(&self) -> BackingStr<'a>
fn clone(&self) -> BackingStr<'a>
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<'a> Debug for BackingStr<'a>
impl<'a> Debug for BackingStr<'a>
Auto Trait Implementations§
impl<'a> Freeze for BackingStr<'a>
impl<'a> RefUnwindSafe for BackingStr<'a>
impl<'a> Send for BackingStr<'a>
impl<'a> Sync for BackingStr<'a>
impl<'a> Unpin for BackingStr<'a>
impl<'a> UnwindSafe for BackingStr<'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