pub struct Member {
pub id: i64,
pub name: String,
pub username: String,
pub created_at: String,
pub mr_member_type: MrMemberType,
}
Fields§
§id: i64
§name: String
§username: String
§created_at: String
§mr_member_type: MrMemberType
Implementations§
Trait Implementations§
Source§impl From<GithubMemberFields> for Member
impl From<GithubMemberFields> for Member
Source§fn from(fields: GithubMemberFields) -> Self
fn from(fields: GithubMemberFields) -> Self
Converts to this type from the input type.
Source§impl From<GithubUserFields> for Member
impl From<GithubUserFields> for Member
Source§fn from(fields: GithubUserFields) -> Self
fn from(fields: GithubUserFields) -> Self
Converts to this type from the input type.
Source§impl From<GitlabMemberFields> for Member
impl From<GitlabMemberFields> for Member
Source§fn from(fields: GitlabMemberFields) -> Self
fn from(fields: GitlabMemberFields) -> Self
Converts to this type from the input type.
Source§impl From<GitlabUserFields> for Member
impl From<GitlabUserFields> for Member
Source§fn from(fields: GitlabUserFields) -> Self
fn from(fields: GitlabUserFields) -> Self
Converts to this type from the input type.
Source§impl From<Member> for DisplayBody
impl From<Member> for DisplayBody
Source§fn from(m: Member) -> DisplayBody
fn from(m: Member) -> DisplayBody
Converts to this type from the input type.
impl StructuralPartialEq for Member
Auto Trait Implementations§
impl Freeze for Member
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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