pub struct LinkMessage {
pub name: String,
pub link_type: LinkType,
pub target_address: Option<u64>,
pub soft_link_value: Option<String>,
pub creation_order: Option<u64>,
}Expand description
A link message — describes a single named link within a group (v2 groups).
Message type 0x0006.
Fields§
§name: StringLink name.
link_type: LinkTypeLink type.
target_address: Option<u64>For hard links: address of the target object header.
soft_link_value: Option<String>For soft links: the link value string.
creation_order: Option<u64>Creation order (if tracked).
Implementations§
Trait Implementations§
Source§impl Clone for LinkMessage
impl Clone for LinkMessage
Source§fn clone(&self) -> LinkMessage
fn clone(&self) -> LinkMessage
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 moreAuto Trait Implementations§
impl Freeze for LinkMessage
impl RefUnwindSafe for LinkMessage
impl Send for LinkMessage
impl Sync for LinkMessage
impl Unpin for LinkMessage
impl UnsafeUnpin for LinkMessage
impl UnwindSafe for LinkMessage
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