pub struct OAuthFlowDiff {
pub authorization_url: DiffResult<String>,
pub token_url: DiffResult<String>,
pub refresh_url: DiffResult<String>,
pub scopes: DiffResult<MapDiff<String>>,
}
Fields§
§token_url: DiffResult<String>
§refresh_url: DiffResult<String>
§scopes: DiffResult<MapDiff<String>>
Trait Implementations§
Source§impl Clone for OAuthFlowDiff
impl Clone for OAuthFlowDiff
Source§fn clone(&self) -> OAuthFlowDiff
fn clone(&self) -> OAuthFlowDiff
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 OAuthFlowDiff
impl Debug for OAuthFlowDiff
Source§impl<'de> Deserialize<'de> for OAuthFlowDiff
impl<'de> Deserialize<'de> for OAuthFlowDiff
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 Diff<OAuthFlow, OAuthFlowDiff, HttpSchemaDiffContext> for OAuthFlow
impl Diff<OAuthFlow, OAuthFlowDiff, HttpSchemaDiffContext> for OAuthFlow
fn diff( &self, new: Option<&OAuthFlow>, context: &HttpSchemaDiffContext, ) -> DiffResult<OAuthFlowDiff>
Source§impl DiffOwnChanges for OAuthFlowDiff
impl DiffOwnChanges for OAuthFlowDiff
fn get_own_changes(&self) -> Vec<(Cow<'_, str>, DiffResultType)>
Auto Trait Implementations§
impl Freeze for OAuthFlowDiff
impl RefUnwindSafe for OAuthFlowDiff
impl Send for OAuthFlowDiff
impl Sync for OAuthFlowDiff
impl Unpin for OAuthFlowDiff
impl UnwindSafe for OAuthFlowDiff
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