pub struct UpdateSavedNotificationSounds {
pub notification_sound_ids: Vec<i64>,
}
Expand description
The list of saved notification sounds was updated. This update may not be sent until information about a notification sound was requested for the first time
Fields§
§notification_sound_ids: Vec<i64>
The new list of identifiers of saved notification sounds
Trait Implementations§
Source§impl Clone for UpdateSavedNotificationSounds
impl Clone for UpdateSavedNotificationSounds
Source§fn clone(&self) -> UpdateSavedNotificationSounds
fn clone(&self) -> UpdateSavedNotificationSounds
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 Default for UpdateSavedNotificationSounds
impl Default for UpdateSavedNotificationSounds
Source§fn default() -> UpdateSavedNotificationSounds
fn default() -> UpdateSavedNotificationSounds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSavedNotificationSounds
impl<'de> Deserialize<'de> for UpdateSavedNotificationSounds
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 UpdateSavedNotificationSounds
impl PartialEq for UpdateSavedNotificationSounds
Source§fn eq(&self, other: &UpdateSavedNotificationSounds) -> bool
fn eq(&self, other: &UpdateSavedNotificationSounds) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateSavedNotificationSounds
Auto Trait Implementations§
impl Freeze for UpdateSavedNotificationSounds
impl RefUnwindSafe for UpdateSavedNotificationSounds
impl Send for UpdateSavedNotificationSounds
impl Sync for UpdateSavedNotificationSounds
impl Unpin for UpdateSavedNotificationSounds
impl UnwindSafe for UpdateSavedNotificationSounds
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