pub struct TreeRenderOptions {
pub highlight_id: Option<SessionId>,
pub after_date: Option<DateTime<Utc>>,
pub before_date: Option<DateTime<Utc>>,
pub tags: Vec<String>,
}Expand description
Options for tree rendering.
Fields§
§highlight_id: Option<SessionId>Highlight this session ID
after_date: Option<DateTime<Utc>>Filter by minimum date
before_date: Option<DateTime<Utc>>Filter by maximum date
Filter by tags
Trait Implementations§
Source§impl Clone for TreeRenderOptions
impl Clone for TreeRenderOptions
Source§fn clone(&self) -> TreeRenderOptions
fn clone(&self) -> TreeRenderOptions
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 TreeRenderOptions
impl Debug for TreeRenderOptions
Source§impl Default for TreeRenderOptions
impl Default for TreeRenderOptions
Source§fn default() -> TreeRenderOptions
fn default() -> TreeRenderOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TreeRenderOptions
impl RefUnwindSafe for TreeRenderOptions
impl Send for TreeRenderOptions
impl Sync for TreeRenderOptions
impl Unpin for TreeRenderOptions
impl UnwindSafe for TreeRenderOptions
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