pub struct ProviderOutcome {
pub provider: String,
pub status: ProviderStatus,
pub message: Option<String>,
}Fields§
§provider: String§status: ProviderStatus§message: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ProviderOutcome
impl Clone for ProviderOutcome
Source§fn clone(&self) -> ProviderOutcome
fn clone(&self) -> ProviderOutcome
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 ProviderOutcome
impl Debug for ProviderOutcome
Source§impl<'de> Deserialize<'de> for ProviderOutcome
impl<'de> Deserialize<'de> for ProviderOutcome
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
impl Eq for ProviderOutcome
Source§impl PartialEq for ProviderOutcome
impl PartialEq for ProviderOutcome
Source§impl Serialize for ProviderOutcome
impl Serialize for ProviderOutcome
impl StructuralPartialEq for ProviderOutcome
Auto Trait Implementations§
impl Freeze for ProviderOutcome
impl RefUnwindSafe for ProviderOutcome
impl Send for ProviderOutcome
impl Sync for ProviderOutcome
impl Unpin for ProviderOutcome
impl UnsafeUnpin for ProviderOutcome
impl UnwindSafe for ProviderOutcome
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