pub struct SetupState {
pub setup_id: Option<String>,
pub status: String,
pub expires_at_ms: Option<i64>,
pub action: Option<SetupAction>,
pub provider_data: Value,
pub connection_id: Option<String>,
pub message: Option<String>,
}Fields§
§setup_id: Option<String>§status: String§expires_at_ms: Option<i64>§action: Option<SetupAction>§provider_data: Value§connection_id: Option<String>§message: Option<String>Trait Implementations§
Source§impl Clone for SetupState
impl Clone for SetupState
Source§fn clone(&self) -> SetupState
fn clone(&self) -> SetupState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SetupState
impl Debug for SetupState
Source§impl<'de> Deserialize<'de> for SetupState
impl<'de> Deserialize<'de> for SetupState
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 SetupState
impl PartialEq for SetupState
Source§impl Serialize for SetupState
impl Serialize for SetupState
impl StructuralPartialEq for SetupState
Auto Trait Implementations§
impl Freeze for SetupState
impl RefUnwindSafe for SetupState
impl Send for SetupState
impl Sync for SetupState
impl Unpin for SetupState
impl UnsafeUnpin for SetupState
impl UnwindSafe for SetupState
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