pub struct ListOutgoingCertificatesResponse {
pub next_marker: Option<String>,
pub outgoing_certificates: Option<Vec<OutgoingCertificate>>,
}Expand description
The output from the ListOutgoingCertificates operation.
Fields§
§next_marker: Option<String>The marker for the next set of results.
outgoing_certificates: Option<Vec<OutgoingCertificate>>The certificates that are being transferred but not yet accepted.
Trait Implementations§
Source§impl Clone for ListOutgoingCertificatesResponse
impl Clone for ListOutgoingCertificatesResponse
Source§fn clone(&self) -> ListOutgoingCertificatesResponse
fn clone(&self) -> ListOutgoingCertificatesResponse
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 Default for ListOutgoingCertificatesResponse
impl Default for ListOutgoingCertificatesResponse
Source§fn default() -> ListOutgoingCertificatesResponse
fn default() -> ListOutgoingCertificatesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListOutgoingCertificatesResponse
impl<'de> Deserialize<'de> for ListOutgoingCertificatesResponse
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 ListOutgoingCertificatesResponse
impl PartialEq for ListOutgoingCertificatesResponse
Source§fn eq(&self, other: &ListOutgoingCertificatesResponse) -> bool
fn eq(&self, other: &ListOutgoingCertificatesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListOutgoingCertificatesResponse
Auto Trait Implementations§
impl Freeze for ListOutgoingCertificatesResponse
impl RefUnwindSafe for ListOutgoingCertificatesResponse
impl Send for ListOutgoingCertificatesResponse
impl Sync for ListOutgoingCertificatesResponse
impl Unpin for ListOutgoingCertificatesResponse
impl UnwindSafe for ListOutgoingCertificatesResponse
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