pub struct ServerChannelsResponse {
pub offset: usize,
pub limit: usize,
pub total_extended: usize,
pub total_standard: usize,
pub extended_channels: Vec<ServerExtendedChannelInfo>,
pub standard_channels: Vec<ServerStandardChannelInfo>,
}Fields§
§offset: usize§limit: usize§total_extended: usize§total_standard: usize§extended_channels: Vec<ServerExtendedChannelInfo>§standard_channels: Vec<ServerStandardChannelInfo>Trait Implementations§
Source§impl ComposeSchema for ServerChannelsResponse
impl ComposeSchema for ServerChannelsResponse
Source§impl Debug for ServerChannelsResponse
impl Debug for ServerChannelsResponse
Source§impl<'de> Deserialize<'de> for ServerChannelsResponse
impl<'de> Deserialize<'de> for ServerChannelsResponse
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 Serialize for ServerChannelsResponse
impl Serialize for ServerChannelsResponse
Auto Trait Implementations§
impl Freeze for ServerChannelsResponse
impl RefUnwindSafe for ServerChannelsResponse
impl Send for ServerChannelsResponse
impl Sync for ServerChannelsResponse
impl Unpin for ServerChannelsResponse
impl UnsafeUnpin for ServerChannelsResponse
impl UnwindSafe for ServerChannelsResponse
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