pub enum CallType {
Inbound,
Outbound,
Forward,
Unknown(u32),
}Expand description
Direction and origin classification attached to call information.
Variants§
Implementations§
Trait Implementations§
impl Copy for CallType
impl Eq for CallType
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.
impl StructuralPartialEq for CallType
Auto Trait Implementations§
impl Freeze for CallType
impl RefUnwindSafe for CallType
impl Send for CallType
impl Sync for CallType
impl Unpin for CallType
impl UnsafeUnpin for CallType
impl UnwindSafe for CallType
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