#[non_exhaustive]pub struct Collaborator {
pub account: ForgeAccount,
pub role: ForgeRole,
pub pending: bool,
}Expand description
A collaborator as observed on the forge.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.account: ForgeAccountWho.
role: ForgeRoleTheir role (the base role, for a forge with custom roles).
pending: boolAn invitation not yet accepted. Counts as present for drift: the adapter has done its part.
Implementations§
Source§impl Collaborator
impl Collaborator
Sourcepub fn new(account: ForgeAccount, role: ForgeRole) -> Self
pub fn new(account: ForgeAccount, role: ForgeRole) -> Self
An accepted collaborator.
Sourcepub fn invited(account: ForgeAccount, role: ForgeRole) -> Self
pub fn invited(account: ForgeAccount, role: ForgeRole) -> Self
A pending invitation.
Trait Implementations§
Source§impl Clone for Collaborator
impl Clone for Collaborator
Source§impl Debug for Collaborator
impl Debug for Collaborator
Source§impl<'de> Deserialize<'de> for Collaborator
impl<'de> Deserialize<'de> for Collaborator
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
impl Eq for Collaborator
Source§impl PartialEq for Collaborator
impl PartialEq for Collaborator
Source§impl Serialize for Collaborator
impl Serialize for Collaborator
impl StructuralPartialEq for Collaborator
Auto Trait Implementations§
impl Freeze for Collaborator
impl RefUnwindSafe for Collaborator
impl Send for Collaborator
impl Sync for Collaborator
impl Unpin for Collaborator
impl UnsafeUnpin for Collaborator
impl UnwindSafe for Collaborator
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