pub struct OAuthApplications {
pub data: Vec<OAuthApplication>,
pub total_count: i64,
}Fields§
§data: Vec<OAuthApplication>§total_count: i64Total number of OAuth applications
Implementations§
Source§impl OAuthApplications
impl OAuthApplications
pub fn new(data: Vec<OAuthApplication>, total_count: i64) -> OAuthApplications
Trait Implementations§
Source§impl Clone for OAuthApplications
impl Clone for OAuthApplications
Source§fn clone(&self) -> OAuthApplications
fn clone(&self) -> OAuthApplications
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 Debug for OAuthApplications
impl Debug for OAuthApplications
Source§impl<'de> Deserialize<'de> for OAuthApplications
impl<'de> Deserialize<'de> for OAuthApplications
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 PartialEq for OAuthApplications
impl PartialEq for OAuthApplications
Source§impl Serialize for OAuthApplications
impl Serialize for OAuthApplications
impl StructuralPartialEq for OAuthApplications
Auto Trait Implementations§
impl Freeze for OAuthApplications
impl RefUnwindSafe for OAuthApplications
impl Send for OAuthApplications
impl Sync for OAuthApplications
impl Unpin for OAuthApplications
impl UnwindSafe for OAuthApplications
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