pub struct AddMemberV0 {
pub member: UserId,
pub metadata: Vec<u8>,
}
Expand description
Add member to a repo
Fields§
§member: UserId
Member to add
metadata: Vec<u8>
App-specific metadata (role, app level permissions, cryptographic material, etc)
Trait Implementations§
Source§impl Clone for AddMemberV0
impl Clone for AddMemberV0
Source§fn clone(&self) -> AddMemberV0
fn clone(&self) -> AddMemberV0
Returns a copy of the value. Read more
1.0.0 · 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 AddMemberV0
impl Debug for AddMemberV0
Source§impl<'de> Deserialize<'de> for AddMemberV0
impl<'de> Deserialize<'de> for AddMemberV0
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 AddMemberV0
impl PartialEq for AddMemberV0
Source§impl Serialize for AddMemberV0
impl Serialize for AddMemberV0
impl Eq for AddMemberV0
impl StructuralPartialEq for AddMemberV0
Auto Trait Implementations§
impl Freeze for AddMemberV0
impl RefUnwindSafe for AddMemberV0
impl Send for AddMemberV0
impl Sync for AddMemberV0
impl Unpin for AddMemberV0
impl UnwindSafe for AddMemberV0
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