pub struct AccountToChannelsConnection {
pub count: i64,
pub page_info: PageInfo,
pub entities: Vec<Channel>,
pub typename: String,
}Fields§
§count: i64The total count of objects in this connection, using the current filters. It is different from the number of objects returned in the current page (in the entities field).
page_info: PageInfoAn object that holds pagination information about the objects in this connection.
entities: Vec<Channel>The channels for the current page of this connection.
typename: StringThe typename of the object
Trait Implementations§
Source§impl Clone for AccountToChannelsConnection
impl Clone for AccountToChannelsConnection
Source§fn clone(&self) -> AccountToChannelsConnection
fn clone(&self) -> AccountToChannelsConnection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Connection for AccountToChannelsConnection
impl Connection for AccountToChannelsConnection
Source§fn get_count(&self) -> i64
fn get_count(&self) -> i64
The total count of objects in this connection, using the current filters. It is different from the number of objects returned in the current page (in the entities field).
Source§fn get_page_info(&self) -> PageInfo
fn get_page_info(&self) -> PageInfo
An object that holds pagination information about the objects in this connection.
fn type_name(&self) -> &'static str
Source§impl Debug for AccountToChannelsConnection
impl Debug for AccountToChannelsConnection
Source§impl<'de> Deserialize<'de> for AccountToChannelsConnection
impl<'de> Deserialize<'de> for AccountToChannelsConnection
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 AccountToChannelsConnection
impl RefUnwindSafe for AccountToChannelsConnection
impl Send for AccountToChannelsConnection
impl Sync for AccountToChannelsConnection
impl Unpin for AccountToChannelsConnection
impl UnwindSafe for AccountToChannelsConnection
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