pub struct ChannelSender { /* private fields */ }
Expand description
The Send half of the channel. This is used for updating the server with new keys
Implementations§
Source§impl ChannelSender
impl ChannelSender
Sourcepub fn update(&self, key: CertifiedKey)
pub fn update(&self, key: CertifiedKey)
Update the key in the channel
Trait Implementations§
Source§impl Clone for ChannelSender
impl Clone for ChannelSender
Source§fn clone(&self) -> ChannelSender
fn clone(&self) -> ChannelSender
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ChannelSender
impl RefUnwindSafe for ChannelSender
impl Send for ChannelSender
impl Sync for ChannelSender
impl Unpin for ChannelSender
impl UnwindSafe for ChannelSender
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