pub struct ListForwardingRequestCreated {
pub gt: Option<i64>,
pub gte: Option<i64>,
pub lt: Option<i64>,
pub lte: Option<i64>,
}
Expand description
Similar to other List endpoints, filters results based on created timestamp. You can pass gt, gte, lt, and lte timestamp values.
Fields§
§gt: Option<i64>
Return results where the created
field is greater than this value.
gte: Option<i64>
Return results where the created
field is greater than or equal to this value.
lt: Option<i64>
Return results where the created
field is less than this value.
lte: Option<i64>
Return results where the created
field is less than or equal to this value.
Implementations§
Trait Implementations§
Source§impl Clone for ListForwardingRequestCreated
impl Clone for ListForwardingRequestCreated
Source§fn clone(&self) -> ListForwardingRequestCreated
fn clone(&self) -> ListForwardingRequestCreated
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 ListForwardingRequestCreated
impl Debug for ListForwardingRequestCreated
impl Copy for ListForwardingRequestCreated
Auto Trait Implementations§
impl Freeze for ListForwardingRequestCreated
impl RefUnwindSafe for ListForwardingRequestCreated
impl Send for ListForwardingRequestCreated
impl Sync for ListForwardingRequestCreated
impl Unpin for ListForwardingRequestCreated
impl UnwindSafe for ListForwardingRequestCreated
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