pub struct GetAllFyisRequestQuery {
pub max: i32,
pub include: Option<Value>,
pub exclude: Option<Value>,
pub id: Option<Value>,
}Fields§
§max: i32Specify the maximum number of notifications to receive. Can request a maximum of 10 notifications.
- Example:
10i32
include: Option<Value>Include only the specified typecode notifications in the request.
exclude: Option<Value>Include all subscribed notifications except the typecodes passed here.
id: Option<Value>if more required, notifcationId of last notification should be used to define next batch border
Trait Implementations§
Source§impl Clone for GetAllFyisRequestQuery
impl Clone for GetAllFyisRequestQuery
Source§fn clone(&self) -> GetAllFyisRequestQuery
fn clone(&self) -> GetAllFyisRequestQuery
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 GetAllFyisRequestQuery
impl Debug for GetAllFyisRequestQuery
Source§impl Default for GetAllFyisRequestQuery
impl Default for GetAllFyisRequestQuery
Source§impl PartialEq for GetAllFyisRequestQuery
impl PartialEq for GetAllFyisRequestQuery
Source§impl Serialize for GetAllFyisRequestQuery
impl Serialize for GetAllFyisRequestQuery
impl StructuralPartialEq for GetAllFyisRequestQuery
Auto Trait Implementations§
impl Freeze for GetAllFyisRequestQuery
impl RefUnwindSafe for GetAllFyisRequestQuery
impl Send for GetAllFyisRequestQuery
impl Sync for GetAllFyisRequestQuery
impl Unpin for GetAllFyisRequestQuery
impl UnsafeUnpin for GetAllFyisRequestQuery
impl UnwindSafe for GetAllFyisRequestQuery
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