pub struct CacheAges {
pub youth: Option<String>,
pub adults: Option<String>,
pub parents: Option<String>,
pub patrols: Option<String>,
pub events: Option<String>,
pub advancement: Option<String>,
}Fields§
§youth: Option<String>§adults: Option<String>§parents: Option<String>§patrols: Option<String>§events: Option<String>§advancement: Option<String>Implementations§
Source§impl CacheAges
impl CacheAges
pub fn roster_age(&self) -> String
pub fn events_age(&self) -> String
Sourcepub fn last_updated(&self) -> String
pub fn last_updated(&self) -> String
Returns the most recent update time across all cache types
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CacheAges
impl RefUnwindSafe for CacheAges
impl Send for CacheAges
impl Sync for CacheAges
impl Unpin for CacheAges
impl UnsafeUnpin for CacheAges
impl UnwindSafe for CacheAges
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