pub struct GuidanceLink {
pub kind: SmolStr,
pub outgoing: bool,
pub other: SmolStr,
}Expand description
One declared guidance link.
Fields§
§kind: SmolStrKind display name.
outgoing: booltrue for => (outgoing from the key), false for <=.
other: SmolStrThe other side’s memory type name.
Trait Implementations§
Source§impl Clone for GuidanceLink
impl Clone for GuidanceLink
Source§fn clone(&self) -> GuidanceLink
fn clone(&self) -> GuidanceLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GuidanceLink
impl Debug for GuidanceLink
Source§impl<'de> Deserialize<'de> for GuidanceLink
impl<'de> Deserialize<'de> for GuidanceLink
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 PartialEq for GuidanceLink
impl PartialEq for GuidanceLink
Source§impl Serialize for GuidanceLink
impl Serialize for GuidanceLink
impl StructuralPartialEq for GuidanceLink
Auto Trait Implementations§
impl Freeze for GuidanceLink
impl RefUnwindSafe for GuidanceLink
impl Send for GuidanceLink
impl Sync for GuidanceLink
impl Unpin for GuidanceLink
impl UnsafeUnpin for GuidanceLink
impl UnwindSafe for GuidanceLink
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