pub struct IssueResponse {
pub refresh_token: Option<String>,
pub token: Option<String>,
}
Expand description
IssueResponse :
Fields§
§refresh_token: Option<String>
§token: Option<String>
Implementations§
source§impl IssueResponse
impl IssueResponse
sourcepub fn new() -> IssueResponse
pub fn new() -> IssueResponse
Trait Implementations§
source§impl Clone for IssueResponse
impl Clone for IssueResponse
source§fn clone(&self) -> IssueResponse
fn clone(&self) -> IssueResponse
Returns a copy 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 IssueResponse
impl Debug for IssueResponse
source§impl Default for IssueResponse
impl Default for IssueResponse
source§fn default() -> IssueResponse
fn default() -> IssueResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IssueResponse
impl<'de> Deserialize<'de> for IssueResponse
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 IssueResponse
impl PartialEq for IssueResponse
source§fn eq(&self, other: &IssueResponse) -> bool
fn eq(&self, other: &IssueResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IssueResponse
impl Serialize for IssueResponse
impl StructuralPartialEq for IssueResponse
Auto Trait Implementations§
impl RefUnwindSafe for IssueResponse
impl Send for IssueResponse
impl Sync for IssueResponse
impl Unpin for IssueResponse
impl UnwindSafe for IssueResponse
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