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