pub enum ProtocolV2LsRefsRecord {
Ref(ProtocolV2LsRefsRef),
Unborn {
name: String,
symref_target: Option<String>,
attributes: Vec<String>,
},
}Variants§
Ref(ProtocolV2LsRefsRef)
Unborn
Trait Implementations§
Source§impl Clone for ProtocolV2LsRefsRecord
impl Clone for ProtocolV2LsRefsRecord
Source§fn clone(&self) -> ProtocolV2LsRefsRecord
fn clone(&self) -> ProtocolV2LsRefsRecord
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 ProtocolV2LsRefsRecord
impl Debug for ProtocolV2LsRefsRecord
impl Eq for ProtocolV2LsRefsRecord
Source§impl PartialEq for ProtocolV2LsRefsRecord
impl PartialEq for ProtocolV2LsRefsRecord
Source§fn eq(&self, other: &ProtocolV2LsRefsRecord) -> bool
fn eq(&self, other: &ProtocolV2LsRefsRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProtocolV2LsRefsRecord
Auto Trait Implementations§
impl Freeze for ProtocolV2LsRefsRecord
impl RefUnwindSafe for ProtocolV2LsRefsRecord
impl Send for ProtocolV2LsRefsRecord
impl Sync for ProtocolV2LsRefsRecord
impl Unpin for ProtocolV2LsRefsRecord
impl UnsafeUnpin for ProtocolV2LsRefsRecord
impl UnwindSafe for ProtocolV2LsRefsRecord
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