pub struct GetStaticMembersParams {
pub queue: Option<String>,
pub member: Option<String>,
}Expand description
- Retrieves a list of Static Members from a queue if no additional parameter is provided. - Retrieves a specific Static Member from a queue if Queue ID and Member ID are provided
Parameters for Client::get_static_members (wire method getStaticMembers).
Fields§
§queue: Option<String>ID for a specific Queue (Example: 4136) (required)
member: Option<String>ID for a specific Static Member (Example: 163) - The Member must belong to the queue provided
Trait Implementations§
Source§impl Clone for GetStaticMembersParams
impl Clone for GetStaticMembersParams
Source§fn clone(&self) -> GetStaticMembersParams
fn clone(&self) -> GetStaticMembersParams
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 Debug for GetStaticMembersParams
impl Debug for GetStaticMembersParams
Source§impl Default for GetStaticMembersParams
impl Default for GetStaticMembersParams
Source§fn default() -> GetStaticMembersParams
fn default() -> GetStaticMembersParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetStaticMembersParams
impl RefUnwindSafe for GetStaticMembersParams
impl Send for GetStaticMembersParams
impl Sync for GetStaticMembersParams
impl Unpin for GetStaticMembersParams
impl UnsafeUnpin for GetStaticMembersParams
impl UnwindSafe for GetStaticMembersParams
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