pub struct RenewBindingTokenResponse {
pub binding_token: String,
pub expires: String,
pub inbox_prefix: String,
pub nats_servers: Vec<String>,
pub sentinel: SentinelCredsRecord,
pub status: String,
}Expand description
Response payload returned by Auth.RenewBindingToken.
Fields§
§binding_token: String§expires: String§inbox_prefix: String§nats_servers: Vec<String>§sentinel: SentinelCredsRecord§status: StringTrait Implementations§
Source§impl Clone for RenewBindingTokenResponse
impl Clone for RenewBindingTokenResponse
Source§fn clone(&self) -> RenewBindingTokenResponse
fn clone(&self) -> RenewBindingTokenResponse
Returns a duplicate 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 RenewBindingTokenResponse
impl Debug for RenewBindingTokenResponse
Source§impl<'de> Deserialize<'de> for RenewBindingTokenResponse
impl<'de> Deserialize<'de> for RenewBindingTokenResponse
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
impl StructuralPartialEq for RenewBindingTokenResponse
Auto Trait Implementations§
impl Freeze for RenewBindingTokenResponse
impl RefUnwindSafe for RenewBindingTokenResponse
impl Send for RenewBindingTokenResponse
impl Sync for RenewBindingTokenResponse
impl Unpin for RenewBindingTokenResponse
impl UnsafeUnpin for RenewBindingTokenResponse
impl UnwindSafe for RenewBindingTokenResponse
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