pub struct GetConferenceResponseConference {Show 26 fields
pub conference: Option<u64>,
pub name: Option<String>,
pub description: Option<String>,
pub max_members: Option<u64>,
pub sound_join: Option<u64>,
pub sound_leave: Option<u64>,
pub sound_has_joined: Option<u64>,
pub sound_has_left: Option<u64>,
pub sound_kicked: Option<u64>,
pub sound_muted: Option<u64>,
pub sound_unmuted: Option<u64>,
pub sound_only_person: Option<u64>,
pub sound_only_one: Option<u64>,
pub sound_there_are: Option<u64>,
pub sound_other_in_party: Option<u64>,
pub sound_place_into_conference: Option<u64>,
pub sound_get_pin: Option<u64>,
pub sound_invalid_pin: Option<u64>,
pub sound_locked: Option<u64>,
pub sound_locked_now: Option<u64>,
pub sound_unlocked_now: Option<u64>,
pub sound_error_menu: Option<u64>,
pub sound_participants_muted: Option<u64>,
pub sound_participants_unmuted: Option<u64>,
pub language: Option<String>,
pub members: Option<String>,
}Expand description
Response body for Client::get_conference (wire method getConference).
Fields§
§conference: Option<u64>§name: Option<String>§description: Option<String>§max_members: Option<u64>§sound_join: Option<u64>§sound_leave: Option<u64>§sound_has_joined: Option<u64>§sound_has_left: Option<u64>§sound_kicked: Option<u64>§sound_muted: Option<u64>§sound_unmuted: Option<u64>§sound_only_person: Option<u64>§sound_only_one: Option<u64>§sound_there_are: Option<u64>§sound_other_in_party: Option<u64>§sound_place_into_conference: Option<u64>§sound_get_pin: Option<u64>§sound_invalid_pin: Option<u64>§sound_locked: Option<u64>§sound_locked_now: Option<u64>§sound_unlocked_now: Option<u64>§sound_participants_muted: Option<u64>§sound_participants_unmuted: Option<u64>§language: Option<String>§members: Option<String>Trait Implementations§
Source§impl Clone for GetConferenceResponseConference
impl Clone for GetConferenceResponseConference
Source§fn clone(&self) -> GetConferenceResponseConference
fn clone(&self) -> GetConferenceResponseConference
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetConferenceResponseConference
impl Default for GetConferenceResponseConference
Source§fn default() -> GetConferenceResponseConference
fn default() -> GetConferenceResponseConference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetConferenceResponseConference
impl<'de> Deserialize<'de> for GetConferenceResponseConference
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
Auto Trait Implementations§
impl Freeze for GetConferenceResponseConference
impl RefUnwindSafe for GetConferenceResponseConference
impl Send for GetConferenceResponseConference
impl Sync for GetConferenceResponseConference
impl Unpin for GetConferenceResponseConference
impl UnsafeUnpin for GetConferenceResponseConference
impl UnwindSafe for GetConferenceResponseConference
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