pub struct UpdateApexRedirectParams {
    pub apex_redirect_id: String,
    pub service_id: Option<String>,
    pub version: Option<i32>,
    pub created_at: Option<String>,
    pub deleted_at: Option<String>,
    pub updated_at: Option<String>,
    pub status_code: Option<i32>,
    pub domains: Option<Vec<String>>,
    pub feature_revision: Option<i32>,
}Expand description
struct for passing parameters to the method update_apex_redirect
Fields§
§apex_redirect_id: String§service_id: Option<String>§version: Option<i32>§created_at: Option<String>Date and time in ISO 8601 format.
deleted_at: Option<String>Date and time in ISO 8601 format.
updated_at: Option<String>Date and time in ISO 8601 format.
status_code: Option<i32>HTTP status code used to redirect the client.
domains: Option<Vec<String>>Array of apex domains that should redirect to their WWW subdomain.
feature_revision: Option<i32>Revision number of the apex redirect feature implementation. Defaults to the most recent revision.
Trait Implementations§
source§impl Clone for UpdateApexRedirectParams
 
impl Clone for UpdateApexRedirectParams
source§fn clone(&self) -> UpdateApexRedirectParams
 
fn clone(&self) -> UpdateApexRedirectParams
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 Debug for UpdateApexRedirectParams
 
impl Debug for UpdateApexRedirectParams
source§impl Default for UpdateApexRedirectParams
 
impl Default for UpdateApexRedirectParams
source§fn default() -> UpdateApexRedirectParams
 
fn default() -> UpdateApexRedirectParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateApexRedirectParams
impl RefUnwindSafe for UpdateApexRedirectParams
impl Send for UpdateApexRedirectParams
impl Sync for UpdateApexRedirectParams
impl Unpin for UpdateApexRedirectParams
impl UnwindSafe for UpdateApexRedirectParams
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)