pub struct NodeUpdateData {
pub node_type: Option<u8>,
pub label: Option<u32>,
pub properties: Option<Vec<u8>>,
}Expand description
Node update data
Fields§
§node_type: Option<u8>§label: Option<u32>§properties: Option<Vec<u8>>Implementations§
Source§impl NodeUpdateData
impl NodeUpdateData
Sourcepub fn get_update_mask(&self) -> u32
pub fn get_update_mask(&self) -> u32
Get update mask for WAL record
Trait Implementations§
Source§impl Debug for NodeUpdateData
impl Debug for NodeUpdateData
Source§impl Default for NodeUpdateData
impl Default for NodeUpdateData
Source§fn default() -> NodeUpdateData
fn default() -> NodeUpdateData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NodeUpdateData
impl RefUnwindSafe for NodeUpdateData
impl Send for NodeUpdateData
impl Sync for NodeUpdateData
impl Unpin for NodeUpdateData
impl UnwindSafe for NodeUpdateData
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more