pub struct WebhookServiceUpdateWebhookRequest {
pub creator_id: Option<i32>,
pub create_time: Option<String>,
pub update_time: Option<String>,
pub row_status: Option<V1RowStatus>,
pub name: Option<String>,
pub url: Option<String>,
}
Fields§
§creator_id: Option<i32>
§create_time: Option<String>
§update_time: Option<String>
§row_status: Option<V1RowStatus>
§name: Option<String>
§url: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for WebhookServiceUpdateWebhookRequest
impl Clone for WebhookServiceUpdateWebhookRequest
Source§fn clone(&self) -> WebhookServiceUpdateWebhookRequest
fn clone(&self) -> WebhookServiceUpdateWebhookRequest
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 WebhookServiceUpdateWebhookRequest
impl Default for WebhookServiceUpdateWebhookRequest
Source§fn default() -> WebhookServiceUpdateWebhookRequest
fn default() -> WebhookServiceUpdateWebhookRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookServiceUpdateWebhookRequest
impl<'de> Deserialize<'de> for WebhookServiceUpdateWebhookRequest
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 WebhookServiceUpdateWebhookRequest
impl PartialEq for WebhookServiceUpdateWebhookRequest
Source§fn eq(&self, other: &WebhookServiceUpdateWebhookRequest) -> bool
fn eq(&self, other: &WebhookServiceUpdateWebhookRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookServiceUpdateWebhookRequest
Auto Trait Implementations§
impl Freeze for WebhookServiceUpdateWebhookRequest
impl RefUnwindSafe for WebhookServiceUpdateWebhookRequest
impl Send for WebhookServiceUpdateWebhookRequest
impl Sync for WebhookServiceUpdateWebhookRequest
impl Unpin for WebhookServiceUpdateWebhookRequest
impl UnwindSafe for WebhookServiceUpdateWebhookRequest
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