pub struct LinkResponse {
pub link_token: String,
pub redirect_url: String,
pub connected_account_id: Option<String>,
}Expand description
Response from creating an auth link
Fields§
§link_token: String§redirect_url: String§connected_account_id: Option<String>Trait Implementations§
Source§impl Clone for LinkResponse
impl Clone for LinkResponse
Source§fn clone(&self) -> LinkResponse
fn clone(&self) -> LinkResponse
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 LinkResponse
impl Debug for LinkResponse
Source§impl<'de> Deserialize<'de> for LinkResponse
impl<'de> Deserialize<'de> for LinkResponse
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 LinkResponse
impl RefUnwindSafe for LinkResponse
impl Send for LinkResponse
impl Sync for LinkResponse
impl Unpin for LinkResponse
impl UnsafeUnpin for LinkResponse
impl UnwindSafe for LinkResponse
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