pub struct Webhooks {
pub limit: Option<i64>,
pub next_marker: Option<Option<String>>,
pub prev_marker: Option<Option<String>>,
pub entries: Option<Vec<WebhookMini>>,
}Fields§
§limit: Option<i64>§next_marker: Option<Option<String>>§prev_marker: Option<Option<String>>§entries: Option<Vec<WebhookMini>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Webhooks
impl<'de> Deserialize<'de> for Webhooks
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
impl StructuralPartialEq for Webhooks
Auto Trait Implementations§
impl Freeze for Webhooks
impl RefUnwindSafe for Webhooks
impl Send for Webhooks
impl Sync for Webhooks
impl Unpin for Webhooks
impl UnsafeUnpin for Webhooks
impl UnwindSafe for Webhooks
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