pub enum CallDirection {
Inbound,
Outbound,
}Expand description
Direction of a call relative to the station.
Variants§
Trait Implementations§
Source§impl Clone for CallDirection
impl Clone for CallDirection
Source§fn clone(&self) -> CallDirection
fn clone(&self) -> CallDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CallDirection
Source§impl Debug for CallDirection
impl Debug for CallDirection
impl Eq for CallDirection
Source§impl From<CallDirection> for CallType
impl From<CallDirection> for CallType
Source§fn from(value: CallDirection) -> Self
fn from(value: CallDirection) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CallDirection
impl PartialEq for CallDirection
impl StructuralPartialEq for CallDirection
Auto Trait Implementations§
impl Freeze for CallDirection
impl RefUnwindSafe for CallDirection
impl Send for CallDirection
impl Sync for CallDirection
impl Unpin for CallDirection
impl UnsafeUnpin for CallDirection
impl UnwindSafe for CallDirection
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