pub struct Dial {
pub caller: Option<Channel>,
pub peer: Option<Channel>,
pub forward: Option<String>,
pub forwarded: Option<Channel>,
pub dialstring: Option<String>,
pub dialstatus: String,
}Expand description
Dialing state has changed.
Fields§
§caller: Option<Channel>The calling channel.
peer: Option<Channel>The dialed channel.
forward: Option<String>Forwarding target requested by the original dialed channel.
forwarded: Option<Channel>§dialstring: Option<String>The dial string for calling the peer channel.
dialstatus: StringCurrent status of the dialing attempt to the peer.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dial
impl<'de> Deserialize<'de> for Dial
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Dial
Auto Trait Implementations§
impl Freeze for Dial
impl RefUnwindSafe for Dial
impl Send for Dial
impl Sync for Dial
impl Unpin for Dial
impl UnwindSafe for Dial
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