pub struct PageBeanWebhook {
pub _self: Option<String>,
pub next_page: Option<String>,
pub max_results: Option<i32>,
pub start_at: Option<i64>,
pub total: Option<i64>,
pub is_last: Option<bool>,
pub values: Option<Vec<Webhook>>,
}
Expand description
PageBeanWebhook : A page of items.
Fields§
§_self: Option<String>
The URL of the page.
next_page: Option<String>
If there is another page of results, the URL of the next page.
max_results: Option<i32>
The maximum number of items that could be returned.
start_at: Option<i64>
The index of the first item returned.
total: Option<i64>
The number of items returned.
is_last: Option<bool>
Whether this is the last page.
values: Option<Vec<Webhook>>
The list of items.
Implementations§
Source§impl PageBeanWebhook
impl PageBeanWebhook
Sourcepub fn new() -> PageBeanWebhook
pub fn new() -> PageBeanWebhook
A page of items.
Trait Implementations§
Source§impl Clone for PageBeanWebhook
impl Clone for PageBeanWebhook
Source§fn clone(&self) -> PageBeanWebhook
fn clone(&self) -> PageBeanWebhook
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 Debug for PageBeanWebhook
impl Debug for PageBeanWebhook
Source§impl Default for PageBeanWebhook
impl Default for PageBeanWebhook
Source§fn default() -> PageBeanWebhook
fn default() -> PageBeanWebhook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageBeanWebhook
impl<'de> Deserialize<'de> for PageBeanWebhook
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 PageBeanWebhook
impl PartialEq for PageBeanWebhook
Source§impl Serialize for PageBeanWebhook
impl Serialize for PageBeanWebhook
impl StructuralPartialEq for PageBeanWebhook
Auto Trait Implementations§
impl Freeze for PageBeanWebhook
impl RefUnwindSafe for PageBeanWebhook
impl Send for PageBeanWebhook
impl Sync for PageBeanWebhook
impl Unpin for PageBeanWebhook
impl UnwindSafe for PageBeanWebhook
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