pub struct ConfigNotificationsUpdateGotifyRequest {
pub comment: Option<String>,
pub delete: Option<Vec<PbsConfigNotificationsInlineEnum>>,
pub digest: Option<String>,
pub disable: Option<bool>,
pub server: Option<String>,
pub token: Option<String>,
}Fields§
§comment: Option<String>Comment.
delete: Option<Vec<PbsConfigNotificationsInlineEnum>>List of properties to delete.
digest: Option<String>Prevent changes if current configuration file has different SHA256 digest. This can be used to prevent concurrent modifications.
disable: Option<bool>Disable this target.
server: Option<String>Gotify Server URL.
token: Option<String>Authentication token
Implementations§
Trait Implementations§
Source§impl Clone for ConfigNotificationsUpdateGotifyRequest
impl Clone for ConfigNotificationsUpdateGotifyRequest
Source§fn clone(&self) -> ConfigNotificationsUpdateGotifyRequest
fn clone(&self) -> ConfigNotificationsUpdateGotifyRequest
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 Default for ConfigNotificationsUpdateGotifyRequest
impl Default for ConfigNotificationsUpdateGotifyRequest
Source§fn default() -> ConfigNotificationsUpdateGotifyRequest
fn default() -> ConfigNotificationsUpdateGotifyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigNotificationsUpdateGotifyRequest
impl<'de> Deserialize<'de> for ConfigNotificationsUpdateGotifyRequest
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 ConfigNotificationsUpdateGotifyRequest
impl PartialEq for ConfigNotificationsUpdateGotifyRequest
Source§fn eq(&self, other: &ConfigNotificationsUpdateGotifyRequest) -> bool
fn eq(&self, other: &ConfigNotificationsUpdateGotifyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigNotificationsUpdateGotifyRequest
Auto Trait Implementations§
impl Freeze for ConfigNotificationsUpdateGotifyRequest
impl RefUnwindSafe for ConfigNotificationsUpdateGotifyRequest
impl Send for ConfigNotificationsUpdateGotifyRequest
impl Sync for ConfigNotificationsUpdateGotifyRequest
impl Unpin for ConfigNotificationsUpdateGotifyRequest
impl UnsafeUnpin for ConfigNotificationsUpdateGotifyRequest
impl UnwindSafe for ConfigNotificationsUpdateGotifyRequest
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