pub struct AuthFlow {
pub steps: Vec<AuthStep>,
pub refresh_interval_secs: u64,
}Expand description
Top-level auth flow descriptor — loaded from --auth-flow <file>.
Fields§
§steps: Vec<AuthStep>Ordered list of HTTP steps. Usually 1 step (POST /login).
refresh_interval_secs: u64How often (seconds) to refresh the token proactively.
If extract_expires_in is set, that value overrides this.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AuthFlow
impl<'de> Deserialize<'de> for AuthFlow
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 AuthFlow
impl RefUnwindSafe for AuthFlow
impl Send for AuthFlow
impl Sync for AuthFlow
impl Unpin for AuthFlow
impl UnsafeUnpin for AuthFlow
impl UnwindSafe for AuthFlow
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