struct ExpectTraffic {
key_schedule: KeyScheduleTraffic,
_fin_verified: FinishedMessageVerified,
}
Fields§
§key_schedule: KeyScheduleTraffic
§_fin_verified: FinishedMessageVerified
Implementations§
Source§impl ExpectTraffic
impl ExpectTraffic
fn handle_key_update( &mut self, common: &mut CommonState, key_update_request: &KeyUpdateRequest, ) -> Result<(), Error>
Trait Implementations§
Source§impl State<ServerConnectionData> for ExpectTraffic
impl State<ServerConnectionData> for ExpectTraffic
fn handle<'m>(
self: Box<Self>,
cx: &mut Context<'_, ServerConnectionData>,
m: Message<'m>,
) -> Result<Box<dyn State<ServerConnectionData> + 'm>, Error>where
Self: 'm,
fn export_keying_material( &self, output: &mut [u8], label: &[u8], context: Option<&[u8]>, ) -> Result<(), Error>
fn extract_secrets(&self) -> Result<PartiallyExtractedSecrets, Error>
fn send_key_update_request( &mut self, common: &mut CommonState, ) -> Result<(), Error>
fn into_owned(self: Box<Self>) -> Box<dyn State<ServerConnectionData> + 'static>
fn handle_decrypt_error(&self)
Auto Trait Implementations§
impl Freeze for ExpectTraffic
impl !RefUnwindSafe for ExpectTraffic
impl Send for ExpectTraffic
impl Sync for ExpectTraffic
impl Unpin for ExpectTraffic
impl !UnwindSafe for ExpectTraffic
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