pub struct HostingContext {
pub user_id: String,
pub nick: String,
}Expand description
托管上下文
Fields§
§user_id: String用户 ID
nick: String昵称
Trait Implementations§
Source§impl Clone for HostingContext
impl Clone for HostingContext
Source§fn clone(&self) -> HostingContext
fn clone(&self) -> HostingContext
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 HostingContext
impl Debug for HostingContext
Source§impl Default for HostingContext
impl Default for HostingContext
Source§fn default() -> HostingContext
fn default() -> HostingContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HostingContext
impl<'de> Deserialize<'de> for HostingContext
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 HostingContext
impl RefUnwindSafe for HostingContext
impl Send for HostingContext
impl Sync for HostingContext
impl Unpin for HostingContext
impl UnsafeUnpin for HostingContext
impl UnwindSafe for HostingContext
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