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