pub struct AllowlistDeletionResponse {
pub message: String,
}Expand description
Confirmation response for deleting an allowlist entry.
JSON schema
{
"title": "AllowlistDeletionResponse",
"description": "Confirmation response for deleting an allowlist
entry.",
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type": "string"
}
},
"x-stainless-model": "apps.allowlist_deletion_response"
}Fields§
§message: StringTrait Implementations§
Source§impl Clone for AllowlistDeletionResponse
impl Clone for AllowlistDeletionResponse
Source§fn clone(&self) -> AllowlistDeletionResponse
fn clone(&self) -> AllowlistDeletionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AllowlistDeletionResponse
impl Debug for AllowlistDeletionResponse
Source§impl<'de> Deserialize<'de> for AllowlistDeletionResponse
impl<'de> Deserialize<'de> for AllowlistDeletionResponse
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 From<&AllowlistDeletionResponse> for AllowlistDeletionResponse
impl From<&AllowlistDeletionResponse> for AllowlistDeletionResponse
Source§fn from(value: &AllowlistDeletionResponse) -> Self
fn from(value: &AllowlistDeletionResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AllowlistDeletionResponse
impl RefUnwindSafe for AllowlistDeletionResponse
impl Send for AllowlistDeletionResponse
impl Sync for AllowlistDeletionResponse
impl Unpin for AllowlistDeletionResponse
impl UnsafeUnpin for AllowlistDeletionResponse
impl UnwindSafe for AllowlistDeletionResponse
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