pub struct UpdateFormat {
pub include_transactions: Option<Box<TransactionFormat>>,
pub include_reassignments: Option<Box<EventFormat>>,
pub include_topology_events: Option<Box<TopologyFormat>>,
}
Expand description
UpdateFormat : A format specifying what updates to include and how to render them.
Fields§
§include_transactions: Option<Box<TransactionFormat>>
§include_reassignments: Option<Box<EventFormat>>
§include_topology_events: Option<Box<TopologyFormat>>
Implementations§
Source§impl UpdateFormat
impl UpdateFormat
Sourcepub fn new() -> UpdateFormat
pub fn new() -> UpdateFormat
A format specifying what updates to include and how to render them.
Trait Implementations§
Source§impl Clone for UpdateFormat
impl Clone for UpdateFormat
Source§fn clone(&self) -> UpdateFormat
fn clone(&self) -> UpdateFormat
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 UpdateFormat
impl Debug for UpdateFormat
Source§impl Default for UpdateFormat
impl Default for UpdateFormat
Source§fn default() -> UpdateFormat
fn default() -> UpdateFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFormat
impl<'de> Deserialize<'de> for UpdateFormat
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 UpdateFormat
impl PartialEq for UpdateFormat
Source§impl Serialize for UpdateFormat
impl Serialize for UpdateFormat
impl StructuralPartialEq for UpdateFormat
Auto Trait Implementations§
impl Freeze for UpdateFormat
impl RefUnwindSafe for UpdateFormat
impl Send for UpdateFormat
impl Sync for UpdateFormat
impl Unpin for UpdateFormat
impl UnwindSafe for UpdateFormat
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