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