pub struct CreateWebACLResponse {
pub change_token: Option<String>,
pub web_acl: Option<WebACL>,
}Fields§
§change_token: Option<String>The ChangeToken that you used to submit the CreateWebACL request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus.
web_acl: Option<WebACL>The WebACL returned in the CreateWebACL response.
Trait Implementations§
Source§impl Clone for CreateWebACLResponse
impl Clone for CreateWebACLResponse
Source§fn clone(&self) -> CreateWebACLResponse
fn clone(&self) -> CreateWebACLResponse
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 CreateWebACLResponse
impl Debug for CreateWebACLResponse
Source§impl Default for CreateWebACLResponse
impl Default for CreateWebACLResponse
Source§fn default() -> CreateWebACLResponse
fn default() -> CreateWebACLResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateWebACLResponse
impl<'de> Deserialize<'de> for CreateWebACLResponse
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 CreateWebACLResponse
impl PartialEq for CreateWebACLResponse
impl StructuralPartialEq for CreateWebACLResponse
Auto Trait Implementations§
impl Freeze for CreateWebACLResponse
impl RefUnwindSafe for CreateWebACLResponse
impl Send for CreateWebACLResponse
impl Sync for CreateWebACLResponse
impl Unpin for CreateWebACLResponse
impl UnwindSafe for CreateWebACLResponse
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