pub enum BlendAuthentication {
BasicAuth {
basic_auth: String,
target_instance: String,
},
BearerAuth {
bearer_auth: String,
target_instance: String,
},
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for BlendAuthentication
impl RefUnwindSafe for BlendAuthentication
impl Send for BlendAuthentication
impl Sync for BlendAuthentication
impl Unpin for BlendAuthentication
impl UnsafeUnpin for BlendAuthentication
impl UnwindSafe for BlendAuthentication
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