pub struct GetCertificateQuery {
pub include: Option<Vec<String>>,
}Expand description
Query parameters for getting a certificate.
Fields§
§include: Option<Vec<String>>A list of additional fields to include in the response. Currently the only supported value is content to fetch the PEM content of the certificate.
Trait Implementations§
Source§impl Clone for GetCertificateQuery
impl Clone for GetCertificateQuery
Source§fn clone(&self) -> GetCertificateQuery
fn clone(&self) -> GetCertificateQuery
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 GetCertificateQuery
impl Debug for GetCertificateQuery
Source§impl Default for GetCertificateQuery
impl Default for GetCertificateQuery
Source§fn default() -> GetCertificateQuery
fn default() -> GetCertificateQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetCertificateQuery
impl PartialEq for GetCertificateQuery
Source§impl Serialize for GetCertificateQuery
impl Serialize for GetCertificateQuery
impl StructuralPartialEq for GetCertificateQuery
Auto Trait Implementations§
impl Freeze for GetCertificateQuery
impl RefUnwindSafe for GetCertificateQuery
impl Send for GetCertificateQuery
impl Sync for GetCertificateQuery
impl Unpin for GetCertificateQuery
impl UnwindSafe for GetCertificateQuery
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