pub struct JmapResultReference<'a> {
pub result_of: &'a str,
pub name: &'static str,
pub path: &'static str,
}Expand description
A JMAP result reference (RFC 8620 §3.7) used to back-reference an earlier method call’s result within a batch request.
Fields§
§result_of: &'a strThe call id of the method call to reference.
name: &'static strThe name of the referenced method.
path: &'static strThe JSON pointer into the referenced result.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for JmapResultReference<'a>
impl<'a> RefUnwindSafe for JmapResultReference<'a>
impl<'a> Send for JmapResultReference<'a>
impl<'a> Sync for JmapResultReference<'a>
impl<'a> Unpin for JmapResultReference<'a>
impl<'a> UnsafeUnpin for JmapResultReference<'a>
impl<'a> UnwindSafe for JmapResultReference<'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