pub struct WebhookEventLogSearchResponse {
pub total: Option<i64>,
pub webhook_event_logs: Option<Vec<WebhookEventLog>>,
}
Expand description
WebhookEventLogSearchResponse : Webhook event log search response.
Fields§
§total: Option<i64>
§webhook_event_logs: Option<Vec<WebhookEventLog>>
Implementations§
Source§impl WebhookEventLogSearchResponse
impl WebhookEventLogSearchResponse
Sourcepub fn new() -> WebhookEventLogSearchResponse
pub fn new() -> WebhookEventLogSearchResponse
Webhook event log search response.
Trait Implementations§
Source§impl Clone for WebhookEventLogSearchResponse
impl Clone for WebhookEventLogSearchResponse
Source§fn clone(&self) -> WebhookEventLogSearchResponse
fn clone(&self) -> WebhookEventLogSearchResponse
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 WebhookEventLogSearchResponse
impl Default for WebhookEventLogSearchResponse
Source§fn default() -> WebhookEventLogSearchResponse
fn default() -> WebhookEventLogSearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookEventLogSearchResponse
impl<'de> Deserialize<'de> for WebhookEventLogSearchResponse
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 WebhookEventLogSearchResponse
impl PartialEq for WebhookEventLogSearchResponse
Source§fn eq(&self, other: &WebhookEventLogSearchResponse) -> bool
fn eq(&self, other: &WebhookEventLogSearchResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookEventLogSearchResponse
Auto Trait Implementations§
impl Freeze for WebhookEventLogSearchResponse
impl RefUnwindSafe for WebhookEventLogSearchResponse
impl Send for WebhookEventLogSearchResponse
impl Sync for WebhookEventLogSearchResponse
impl Unpin for WebhookEventLogSearchResponse
impl UnwindSafe for WebhookEventLogSearchResponse
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