pub struct UserConnectOptions<'a> {
pub servers: &'a str,
pub sentinel_jwt: &'a str,
pub sentinel_seed: &'a str,
pub session_key_seed_base64url: &'a str,
pub binding_token: &'a str,
pub timeout_ms: u64,
}Expand description
Connection options for a user/binding-token principal.
Fields§
§servers: &'a str§sentinel_jwt: &'a str§sentinel_seed: &'a str§session_key_seed_base64url: &'a str§binding_token: &'a str§timeout_ms: u64Auto Trait Implementations§
impl<'a> Freeze for UserConnectOptions<'a>
impl<'a> RefUnwindSafe for UserConnectOptions<'a>
impl<'a> Send for UserConnectOptions<'a>
impl<'a> Sync for UserConnectOptions<'a>
impl<'a> Unpin for UserConnectOptions<'a>
impl<'a> UnsafeUnpin for UserConnectOptions<'a>
impl<'a> UnwindSafe for UserConnectOptions<'a>
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