pub struct ChannelQuery {
pub name_contains: Option<String>,
pub channel_type: Option<String>,
pub state: Option<String>,
pub participant: Option<String>,
pub limit: Option<usize>,
}Expand description
Query filters for channels.
Fields§
§name_contains: Option<String>§channel_type: Option<String>§state: Option<String>§participant: Option<String>§limit: Option<usize>Trait Implementations§
Source§impl Clone for ChannelQuery
impl Clone for ChannelQuery
Source§fn clone(&self) -> ChannelQuery
fn clone(&self) -> ChannelQuery
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 ChannelQuery
impl Debug for ChannelQuery
Source§impl Default for ChannelQuery
impl Default for ChannelQuery
Source§fn default() -> ChannelQuery
fn default() -> ChannelQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChannelQuery
impl RefUnwindSafe for ChannelQuery
impl Send for ChannelQuery
impl Sync for ChannelQuery
impl Unpin for ChannelQuery
impl UnsafeUnpin for ChannelQuery
impl UnwindSafe for ChannelQuery
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