pub struct CreateNotificationResponse {
pub notification_id: Option<String>,
}Expand description
CreateNotificationResponse : The response for the createNotification operation.
Fields§
§notification_id: Option<String>The unique identifier assigned to each notification.
Implementations§
Source§impl CreateNotificationResponse
impl CreateNotificationResponse
Sourcepub fn new() -> CreateNotificationResponse
pub fn new() -> CreateNotificationResponse
The response for the createNotification operation.
Trait Implementations§
Source§impl Clone for CreateNotificationResponse
impl Clone for CreateNotificationResponse
Source§fn clone(&self) -> CreateNotificationResponse
fn clone(&self) -> CreateNotificationResponse
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 CreateNotificationResponse
impl Debug for CreateNotificationResponse
Source§impl Default for CreateNotificationResponse
impl Default for CreateNotificationResponse
Source§fn default() -> CreateNotificationResponse
fn default() -> CreateNotificationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateNotificationResponse
impl<'de> Deserialize<'de> for CreateNotificationResponse
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 CreateNotificationResponse
Auto Trait Implementations§
impl Freeze for CreateNotificationResponse
impl RefUnwindSafe for CreateNotificationResponse
impl Send for CreateNotificationResponse
impl Sync for CreateNotificationResponse
impl Unpin for CreateNotificationResponse
impl UnsafeUnpin for CreateNotificationResponse
impl UnwindSafe for CreateNotificationResponse
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