pub struct LocalSessionLink {
pub session_id: String,
pub linked_session_id: String,
pub link_type: String,
pub created_at: String,
}Expand description
A lightweight local link row for session-to-session relationships.
Fields§
§session_id: String§linked_session_id: String§link_type: String§created_at: StringTrait Implementations§
Source§impl Clone for LocalSessionLink
impl Clone for LocalSessionLink
Source§fn clone(&self) -> LocalSessionLink
fn clone(&self) -> LocalSessionLink
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 LocalSessionLink
impl RefUnwindSafe for LocalSessionLink
impl Send for LocalSessionLink
impl Sync for LocalSessionLink
impl Unpin for LocalSessionLink
impl UnsafeUnpin for LocalSessionLink
impl UnwindSafe for LocalSessionLink
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