pub enum CertManagerResponse {
CertLeaseResponse {
accepted: bool,
},
SetTxtRecordResponse {
accepted: bool,
},
}
Variants§
CertLeaseResponse
Acknowledge a lease request and indicate whether it was accepted.
SetTxtRecordResponse
Acknowledge a TXT record update and indicate whether it was accepted.
Trait Implementations§
Source§impl ChannelMessage for CertManagerResponse
impl ChannelMessage for CertManagerResponse
type Reply = CertManagerRequest
Source§impl Clone for CertManagerResponse
impl Clone for CertManagerResponse
Source§fn clone(&self) -> CertManagerResponse
fn clone(&self) -> CertManagerResponse
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 CertManagerResponse
impl Debug for CertManagerResponse
Source§impl<'de> Deserialize<'de> for CertManagerResponse
impl<'de> Deserialize<'de> for CertManagerResponse
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 Enumerable for CertManagerResponse
impl Enumerable for CertManagerResponse
Source§impl PartialEq for CertManagerResponse
impl PartialEq for CertManagerResponse
Source§impl Serialize for CertManagerResponse
impl Serialize for CertManagerResponse
Source§impl Valuable for CertManagerResponse
impl Valuable for CertManagerResponse
impl Eq for CertManagerResponse
impl StructuralPartialEq for CertManagerResponse
Auto Trait Implementations§
impl Freeze for CertManagerResponse
impl RefUnwindSafe for CertManagerResponse
impl Send for CertManagerResponse
impl Sync for CertManagerResponse
impl Unpin for CertManagerResponse
impl UnwindSafe for CertManagerResponse
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