pub struct ListCertificateTemplatesResponse {
pub certificate_templates: Option<Vec<CertificateTemplate>>,
pub next_page_token: Option<String>,
pub unreachable: Option<Vec<String>>,
}Expand description
Response message for CertificateAuthorityService.ListCertificateTemplates.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§certificate_templates: Option<Vec<CertificateTemplate>>The list of CertificateTemplates.
next_page_token: Option<String>A token to retrieve next page of results. Pass this value in ListCertificateTemplatesRequest.page_token to retrieve the next page of results.
unreachable: Option<Vec<String>>A list of locations (e.g. “us-west1”) that could not be reached.
Trait Implementations§
Source§impl Clone for ListCertificateTemplatesResponse
impl Clone for ListCertificateTemplatesResponse
Source§fn clone(&self) -> ListCertificateTemplatesResponse
fn clone(&self) -> ListCertificateTemplatesResponse
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 ListCertificateTemplatesResponse
impl Default for ListCertificateTemplatesResponse
Source§fn default() -> ListCertificateTemplatesResponse
fn default() -> ListCertificateTemplatesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListCertificateTemplatesResponse
impl<'de> Deserialize<'de> for ListCertificateTemplatesResponse
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 ResponseResult for ListCertificateTemplatesResponse
Auto Trait Implementations§
impl Freeze for ListCertificateTemplatesResponse
impl RefUnwindSafe for ListCertificateTemplatesResponse
impl Send for ListCertificateTemplatesResponse
impl Sync for ListCertificateTemplatesResponse
impl Unpin for ListCertificateTemplatesResponse
impl UnwindSafe for ListCertificateTemplatesResponse
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