pub struct ConnectWebview {
pub connect_webview_id: String,
pub custom_redirect_url: Value,
pub url: String,
pub workspace_id: String,
pub device_selection_mode: String,
pub accepted_provider: Option<Vec<String>>,
pub accepted_devices: Vec<Value>,
pub any_provider_allowed: bool,
pub any_device_allowed: Value,
pub created_at: String,
pub login_successful: bool,
pub status: String,
}
Fields§
§connect_webview_id: String
§custom_redirect_url: Value
§url: String
§workspace_id: String
§device_selection_mode: String
§accepted_provider: Option<Vec<String>>
§accepted_devices: Vec<Value>
§any_provider_allowed: bool
§any_device_allowed: Value
§created_at: String
§login_successful: bool
§status: String
Trait Implementations§
Source§impl Clone for ConnectWebview
impl Clone for ConnectWebview
Source§fn clone(&self) -> ConnectWebview
fn clone(&self) -> ConnectWebview
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 ConnectWebview
impl Debug for ConnectWebview
Source§impl<'de> Deserialize<'de> for ConnectWebview
impl<'de> Deserialize<'de> for ConnectWebview
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 ConnectWebview
impl RefUnwindSafe for ConnectWebview
impl Send for ConnectWebview
impl Sync for ConnectWebview
impl Unpin for ConnectWebview
impl UnwindSafe for ConnectWebview
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