pub enum MessageToProxy {
RouteInfoResponse(RouteInfoResponse),
CertManagerResponse(CertManagerResponse),
BackendRemoved {
backend: BackendName,
},
}
Variants§
RouteInfoResponse(RouteInfoResponse)
CertManagerResponse(CertManagerResponse)
BackendRemoved
Fields
§
backend: BackendName
Trait Implementations§
Source§impl ChannelMessage for MessageToProxy
impl ChannelMessage for MessageToProxy
type Reply = MessageFromProxy
Source§impl Clone for MessageToProxy
impl Clone for MessageToProxy
Source§fn clone(&self) -> MessageToProxy
fn clone(&self) -> MessageToProxy
Returns a duplicate 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 MessageToProxy
impl Debug for MessageToProxy
Source§impl<'de> Deserialize<'de> for MessageToProxy
impl<'de> Deserialize<'de> for MessageToProxy
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
Source§impl PartialEq for MessageToProxy
impl PartialEq for MessageToProxy
Source§impl Serialize for MessageToProxy
impl Serialize for MessageToProxy
impl Eq for MessageToProxy
impl StructuralPartialEq for MessageToProxy
Auto Trait Implementations§
impl Freeze for MessageToProxy
impl RefUnwindSafe for MessageToProxy
impl Send for MessageToProxy
impl Sync for MessageToProxy
impl Unpin for MessageToProxy
impl UnwindSafe for MessageToProxy
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