pub struct FetchPostRes {
pub access_token: String,
pub token_type: String,
pub expires_in: u32,
pub refresh_token: String,
pub scope: String,
}
Fields§
§access_token: String
§token_type: String
§expires_in: u32
§refresh_token: String
§scope: String
Trait Implementations§
Source§impl Clone for FetchPostRes
impl Clone for FetchPostRes
Source§fn clone(&self) -> FetchPostRes
fn clone(&self) -> FetchPostRes
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 FetchPostRes
impl Debug for FetchPostRes
Source§impl<'de> Deserialize<'de> for FetchPostRes
impl<'de> Deserialize<'de> for FetchPostRes
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 FetchPostRes
impl RefUnwindSafe for FetchPostRes
impl Send for FetchPostRes
impl Sync for FetchPostRes
impl Unpin for FetchPostRes
impl UnwindSafe for FetchPostRes
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