pub struct SessionInfo { /* private fields */ }Expand description
Pubky homeserver session struct.
Implementations§
Source§impl SessionInfo
impl SessionInfo
Sourcepub fn new(
public_key: &PublicKey,
capabilities: Capabilities,
user_agent: Option<String>,
) -> Self
pub fn new( public_key: &PublicKey, capabilities: Capabilities, user_agent: Option<String>, ) -> Self
Create a new session.
Sourcepub fn public_key(&self) -> &PublicKey
pub fn public_key(&self) -> &PublicKey
Returns the public_key of this session authorizes for.
Sourcepub fn capabilities(&self) -> &[Capability]
pub fn capabilities(&self) -> &[Capability]
Returns the capabilities this session provide on this session’s public_key’s resources.
Sourcepub fn created_at(&self) -> u64
pub fn created_at(&self) -> u64
Returns the timestamp when this session was created.
Sourcepub fn set_created_at(&mut self, created_at: u64) -> &mut Self
pub fn set_created_at(&mut self, created_at: u64) -> &mut Self
Set the timestamp when this session was created.
Sourcepub fn set_capabilities(&mut self, capabilities: Capabilities) -> &mut Self
pub fn set_capabilities(&mut self, capabilities: Capabilities) -> &mut Self
Set this session’s capabilities.
Sourcepub fn serialize(&self) -> Vec<u8> ⓘ
pub fn serialize(&self) -> Vec<u8> ⓘ
Serialize this session to its canonical binary representation.
Sourcepub fn deserialize(bytes: &[u8]) -> Result<Self, Error>
pub fn deserialize(bytes: &[u8]) -> Result<Self, Error>
Deserialize this session from its canonical binary representation.
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 PartialEq for SessionInfo
impl PartialEq for SessionInfo
Source§impl Serialize for SessionInfo
impl Serialize for SessionInfo
impl Eq for SessionInfo
impl StructuralPartialEq for SessionInfo
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