pub struct UpdateParticipantOptions {
pub metadata: String,
pub attributes: HashMap<String, String>,
pub permission: Option<ParticipantPermission>,
pub name: String,
}
Fields§
§metadata: String
§attributes: HashMap<String, String>
§permission: Option<ParticipantPermission>
§name: String
Trait Implementations§
Source§impl Clone for UpdateParticipantOptions
impl Clone for UpdateParticipantOptions
Source§fn clone(&self) -> UpdateParticipantOptions
fn clone(&self) -> UpdateParticipantOptions
Returns a duplicate 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 UpdateParticipantOptions
impl Debug for UpdateParticipantOptions
Source§impl Default for UpdateParticipantOptions
impl Default for UpdateParticipantOptions
Source§fn default() -> UpdateParticipantOptions
fn default() -> UpdateParticipantOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateParticipantOptions
impl RefUnwindSafe for UpdateParticipantOptions
impl Send for UpdateParticipantOptions
impl Sync for UpdateParticipantOptions
impl Unpin for UpdateParticipantOptions
impl UnwindSafe for UpdateParticipantOptions
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