pub struct SipVersion(pub u8, pub u8);
Expand description
SIP-Version
ex. SIP/2.0 -> SipVersion(2, 0)
Tuple Fields§
§0: u8
§1: u8
Trait Implementations§
Source§impl Clone for SipVersion
impl Clone for SipVersion
Source§fn clone(&self) -> SipVersion
fn clone(&self) -> SipVersion
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 moreSource§impl Debug for SipVersion
impl Debug for SipVersion
Source§impl PartialEq for SipVersion
impl PartialEq for SipVersion
impl Copy for SipVersion
impl StructuralPartialEq for SipVersion
Auto Trait Implementations§
impl Freeze for SipVersion
impl RefUnwindSafe for SipVersion
impl Send for SipVersion
impl Sync for SipVersion
impl Unpin for SipVersion
impl UnwindSafe for SipVersion
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