pub struct UpdatePath {
pub leaf_node: LeafNode,
pub nodes: Vec<UpdatePathNode>,
}
Fields§
§leaf_node: LeafNode
§nodes: Vec<UpdatePathNode>
Trait Implementations§
Source§impl Clone for UpdatePath
impl Clone for UpdatePath
Source§fn clone(&self) -> UpdatePath
fn clone(&self) -> UpdatePath
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 UpdatePath
impl Debug for UpdatePath
Source§impl<'de> Deserialize<'de> for UpdatePath
impl<'de> Deserialize<'de> for UpdatePath
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Deserialize for UpdatePath
impl Deserialize for UpdatePath
Source§fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
This function deserializes the
bytes
from the provided a std::io::Read
and returns the populated struct. Read moreSource§impl PartialEq for UpdatePath
impl PartialEq for UpdatePath
Source§impl Serialize for &UpdatePath
impl Serialize for &UpdatePath
Source§impl Serialize for UpdatePath
impl Serialize for UpdatePath
Source§impl Serialize for UpdatePath
impl Serialize for UpdatePath
Source§impl Size for &UpdatePath
impl Size for &UpdatePath
fn tls_serialized_len(&self) -> usize
Source§impl Size for UpdatePath
impl Size for UpdatePath
fn tls_serialized_len(&self) -> usize
impl Eq for UpdatePath
impl StructuralPartialEq for UpdatePath
Auto Trait Implementations§
impl Freeze for UpdatePath
impl RefUnwindSafe for UpdatePath
impl Send for UpdatePath
impl Sync for UpdatePath
impl Unpin for UpdatePath
impl UnwindSafe for UpdatePath
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