pub struct TicketKeyStatus(/* private fields */);
Expand description
Session Ticket Key CB result type
Implementations§
Source§impl TicketKeyStatus
impl TicketKeyStatus
Sourcepub const FAILED: TicketKeyStatus
pub const FAILED: TicketKeyStatus
Session Ticket Key is not set/retrieved for current session
Sourcepub const SUCCESS: TicketKeyStatus
pub const SUCCESS: TicketKeyStatus
Session Ticket Key is set, and no renew is needed
Sourcepub const SUCCESS_AND_RENEW: TicketKeyStatus
pub const SUCCESS_AND_RENEW: TicketKeyStatus
Session Ticket Key is set, and a new ticket will be needed
Trait Implementations§
Source§impl Clone for TicketKeyStatus
impl Clone for TicketKeyStatus
Source§fn clone(&self) -> TicketKeyStatus
fn clone(&self) -> TicketKeyStatus
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 TicketKeyStatus
impl Debug for TicketKeyStatus
Source§impl PartialEq for TicketKeyStatus
impl PartialEq for TicketKeyStatus
impl Copy for TicketKeyStatus
impl Eq for TicketKeyStatus
impl StructuralPartialEq for TicketKeyStatus
Auto Trait Implementations§
impl Freeze for TicketKeyStatus
impl RefUnwindSafe for TicketKeyStatus
impl Send for TicketKeyStatus
impl Sync for TicketKeyStatus
impl Unpin for TicketKeyStatus
impl UnwindSafe for TicketKeyStatus
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