Skip to main content

SetConferenceParams

Struct SetConferenceParams 

Source
pub struct SetConferenceParams {
Show 26 fields pub conference: Option<i64>, pub name: Option<String>, pub description: Option<String>, pub members: Option<String>, pub max_members: Option<String>, pub sound_join: Option<String>, pub sound_leave: Option<String>, pub sound_has_joined: Option<String>, pub sound_has_left: Option<String>, pub sound_kicked: Option<String>, pub sound_muted: Option<String>, pub sound_unmuted: Option<String>, pub sound_only_person: Option<String>, pub sound_only_one: Option<String>, pub sound_there_are: Option<String>, pub sound_other_in_party: Option<String>, pub sound_place_into_conference: Option<String>, pub sound_get_pin: Option<String>, pub sound_invalid_pin: Option<String>, pub sound_locked: Option<String>, pub sound_locked_now: Option<String>, pub sound_unlocked_now: Option<String>, pub sound_error_menu: Option<String>, pub sound_participants_muted: Option<String>, pub sound_participants_unmuted: Option<String>, pub language: Option<String>,
}
Expand description

- Updates a specific Conference if a conference code is provided. - Adds a new Conference entry if no conference code is provided.

Parameters for Client::set_conference (wire method setConference).

Fields§

§conference: Option<i64>

ID for a specific Conference (Example: 5356) (required)

§name: Option<String>

Conference name (required)

§description: Option<String>

Conference description (required)

§members: Option<String>

Conference Members

§max_members: Option<String>

Members Max Value (required)

§sound_join: Option<String>

The recording played when a user joins, typically some kind of beep sound (Values from getRecordings)

§sound_leave: Option<String>

The recording played when a user leaves, typically some kind of beep sound (Values from getRecordings)

§sound_has_joined: Option<String>

The recording played as a user intro (Values from getRecordings)

§sound_has_left: Option<String>

The recording played as a user leaves the conference (Values from getRecordings)

§sound_kicked: Option<String>

The recording played to a user who has been kicked from the conference (Values from getRecordings)

§sound_muted: Option<String>

The recording played to a user when the mute option is toggled on (Values from getRecordings)

§sound_unmuted: Option<String>

The recording played to a user when the mute option is toggled off (Values from getRecordings)

§sound_only_person: Option<String>

The recording played when a user is the only person in the conference (Values from getRecordings)

§sound_only_one: Option<String>

The recording played to a user when there is only one other person in the conference. (Values from getRecordings)

§sound_there_are: Option<String>

The recording played when announcing how many users there are in a conference. (Values from getRecordings)

§sound_other_in_party: Option<String>

The recording used in conjunction with the There are option, used like There are (number of participants) Other in party (Values from getRecordings)

§sound_place_into_conference: Option<String>

The recording played when a user is placed into a conference that cannot start until a marked user enters (Values from getRecordings)

§sound_get_pin: Option<String>

The recording played when prompting for a conference PIN (Values from getRecordings)

§sound_invalid_pin: Option<String>

The recording played when an invalid PIN is entered too many (3) times (Values from getRecordings)

§sound_locked: Option<String>

The recording played to a user trying to join a locked conference (Values from getRecordings)

§sound_locked_now: Option<String>

The recording played to an Admin-level user after toggling the conference to locked mode (Values from getRecordings)

§sound_unlocked_now: Option<String>

The recording played to an Admin-level user after toggling the conference to unlocked mode (Values from getRecordings)

§sound_error_menu: Option<String>

The recording played when there is an error on the menu. (Values from getRecordings)

§sound_participants_muted: Option<String>

The recording played when all non-admin participants are muted. (Values from getRecordings)

§sound_participants_unmuted: Option<String>

The recording played when all non-admin participants are unmuted. (Values from getRecordings)

§language: Option<String>

Conference Language (Values from getLanguages)

Trait Implementations§

Source§

impl Clone for SetConferenceParams

Source§

fn clone(&self) -> SetConferenceParams

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SetConferenceParams

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SetConferenceParams

Source§

fn default() -> SetConferenceParams

Returns the “default value” for a type. Read more
Source§

impl Serialize for SetConferenceParams

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more