pub struct ActionsView {
pub data: Option<Vec<ActionRecord>>,
}Fields§
§data: Option<Vec<ActionRecord>>Data is the most-recent actions first, capped at listActionsLimit.
Implementations§
Source§impl ActionsView
impl ActionsView
pub fn new() -> ActionsView
Trait Implementations§
Source§impl Clone for ActionsView
impl Clone for ActionsView
Source§fn clone(&self) -> ActionsView
fn clone(&self) -> ActionsView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionsView
impl Debug for ActionsView
Source§impl Default for ActionsView
impl Default for ActionsView
Source§fn default() -> ActionsView
fn default() -> ActionsView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsView
impl<'de> Deserialize<'de> for ActionsView
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 ActionsView
impl PartialEq for ActionsView
Source§impl Serialize for ActionsView
impl Serialize for ActionsView
impl StructuralPartialEq for ActionsView
Auto Trait Implementations§
impl Freeze for ActionsView
impl RefUnwindSafe for ActionsView
impl Send for ActionsView
impl Sync for ActionsView
impl Unpin for ActionsView
impl UnsafeUnpin for ActionsView
impl UnwindSafe for ActionsView
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