pub struct SessionInfo {
    pub tenant_id: TenantId,
    pub tenant_name: String,
}Expand description
SessionInfo
JSON schema
{
 "type": "object",
 "required": [
   "tenant_id",
   "tenant_name"
 ],
 "properties": {
   "tenant_id": {
     "$ref": "#/components/schemas/TenantId"
   },
   "tenant_name": {
     "description": "Current user's tenant name",
     "type": "string"
   }
 }
}Fields§
§tenant_id: TenantId§tenant_name: StringCurrent user’s tenant name
Implementations§
Source§impl SessionInfo
 
impl SessionInfo
pub fn builder() -> SessionInfo
Trait Implementations§
Source§impl Clone for SessionInfo
 
impl Clone for SessionInfo
Source§fn clone(&self) -> SessionInfo
 
fn clone(&self) -> SessionInfo
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 SessionInfo
 
impl Debug for SessionInfo
Source§impl<'de> Deserialize<'de> for SessionInfo
 
impl<'de> Deserialize<'de> for SessionInfo
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 From<&SessionInfo> for SessionInfo
 
impl From<&SessionInfo> for SessionInfo
Source§fn from(value: &SessionInfo) -> Self
 
fn from(value: &SessionInfo) -> Self
Converts to this type from the input type.
Source§impl From<SessionInfo> for SessionInfo
 
impl From<SessionInfo> for SessionInfo
Source§fn from(value: SessionInfo) -> Self
 
fn from(value: SessionInfo) -> Self
Converts to this type from the input type.
Source§impl Serialize for SessionInfo
 
impl Serialize for SessionInfo
Source§impl TryFrom<SessionInfo> for SessionInfo
 
impl TryFrom<SessionInfo> for SessionInfo
Source§type Error = ConversionError
 
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: SessionInfo) -> Result<Self, ConversionError>
 
fn try_from(value: SessionInfo) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SessionInfo
impl RefUnwindSafe for SessionInfo
impl Send for SessionInfo
impl Sync for SessionInfo
impl Unpin for SessionInfo
impl UnwindSafe for SessionInfo
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