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