pub struct CommunityMember {
pub name: String,
pub file: Option<String>,
pub line: Option<i64>,
pub refs: Vec<CommunityMemberRef>,
pub tagpath_handle: Option<String>,
}Fields§
§name: String§file: Option<String>§line: Option<i64>§refs: Vec<CommunityMemberRef>§tagpath_handle: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for CommunityMember
impl Clone for CommunityMember
Source§fn clone(&self) -> CommunityMember
fn clone(&self) -> CommunityMember
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 CommunityMember
impl Debug for CommunityMember
Source§impl<'de> Deserialize<'de> for CommunityMember
impl<'de> Deserialize<'de> for CommunityMember
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
Auto Trait Implementations§
impl Freeze for CommunityMember
impl RefUnwindSafe for CommunityMember
impl Send for CommunityMember
impl Sync for CommunityMember
impl Unpin for CommunityMember
impl UnsafeUnpin for CommunityMember
impl UnwindSafe for CommunityMember
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