pub struct ListServerTlsPoliciesResponse {
pub next_page_token: Option<String>,
pub server_tls_policies: Option<Vec<ServerTlsPolicy>>,
}Expand description
Response returned by the ListServerTlsPolicies method.
§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).
- locations server tls policies list projects (response)
Fields§
§next_page_token: Option<String>If there might be more results than those appearing in this response, then next_page_token is included. To get the next set of results, call this method again using the value of next_page_token as page_token.
server_tls_policies: Option<Vec<ServerTlsPolicy>>List of ServerTlsPolicy resources.
Trait Implementations§
source§impl Clone for ListServerTlsPoliciesResponse
impl Clone for ListServerTlsPoliciesResponse
source§fn clone(&self) -> ListServerTlsPoliciesResponse
fn clone(&self) -> ListServerTlsPoliciesResponse
Returns a copy 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 ListServerTlsPoliciesResponse
impl Default for ListServerTlsPoliciesResponse
source§fn default() -> ListServerTlsPoliciesResponse
fn default() -> ListServerTlsPoliciesResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ListServerTlsPoliciesResponse
impl<'de> Deserialize<'de> for ListServerTlsPoliciesResponse
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 ListServerTlsPoliciesResponse
Auto Trait Implementations§
impl RefUnwindSafe for ListServerTlsPoliciesResponse
impl Send for ListServerTlsPoliciesResponse
impl Sync for ListServerTlsPoliciesResponse
impl Unpin for ListServerTlsPoliciesResponse
impl UnwindSafe for ListServerTlsPoliciesResponse
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