pub struct RefreshTokenResponse {
pub id: String,
pub access_token: AccessToken,
pub expires_in: u32,
pub token_type: String,
pub plan: String,
pub provider: String,
pub scope: String,
}Fields§
§id: StringThe feedly user id.
access_token: AccessTokenThe new access token.
expires_in: u32The remaining lifetime of the access token in seconds.
token_type: StringIndicates the type of token returned.
At this time, this field will always have the value of Bearer
plan: StringIndicates the user plan (standard, pro or business).
provider: String§scope: Stringhttps://cloud.feedly.com/subscriptions
Trait Implementations§
Source§impl Debug for RefreshTokenResponse
impl Debug for RefreshTokenResponse
Source§impl<'de> Deserialize<'de> for RefreshTokenResponse
impl<'de> Deserialize<'de> for RefreshTokenResponse
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 RefreshTokenResponse
impl RefUnwindSafe for RefreshTokenResponse
impl Send for RefreshTokenResponse
impl Sync for RefreshTokenResponse
impl Unpin for RefreshTokenResponse
impl UnwindSafe for RefreshTokenResponse
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