pub struct AddMemberOperationRequest {
pub member_id: String,
pub boot_seq: u32,
}Expand description
Request to add a member to the group
Fields§
§member_id: StringThe member ID (RINCON format UUID) of the speaker to add
boot_seq: u32The boot sequence number of the speaker
Trait Implementations§
Source§impl Clone for AddMemberOperationRequest
impl Clone for AddMemberOperationRequest
Source§fn clone(&self) -> AddMemberOperationRequest
fn clone(&self) -> AddMemberOperationRequest
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 AddMemberOperationRequest
impl Debug for AddMemberOperationRequest
Source§impl<'de> Deserialize<'de> for AddMemberOperationRequest
impl<'de> Deserialize<'de> for AddMemberOperationRequest
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 Validate for AddMemberOperationRequest
impl Validate for AddMemberOperationRequest
Source§fn validate_basic(&self) -> Result<(), ValidationError>
fn validate_basic(&self) -> Result<(), ValidationError>
Perform basic validation Read more
Source§fn validate(&self, level: ValidationLevel) -> Result<(), ValidationError>
fn validate(&self, level: ValidationLevel) -> Result<(), ValidationError>
Validate with the specified level
impl StructuralPartialEq for AddMemberOperationRequest
Auto Trait Implementations§
impl Freeze for AddMemberOperationRequest
impl RefUnwindSafe for AddMemberOperationRequest
impl Send for AddMemberOperationRequest
impl Sync for AddMemberOperationRequest
impl Unpin for AddMemberOperationRequest
impl UnsafeUnpin for AddMemberOperationRequest
impl UnwindSafe for AddMemberOperationRequest
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