1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
// Copyright (c) 2016-2017 Martijn Rijkeboer <[email protected]>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use chrono::{DateTime, Utc};
/// Trait for getting and setting of time related data.
pub trait Times {
/// Gets the date and time the implementor was created.
fn creation_time(&self) -> DateTime<Utc>;
/// Gets whether the implementor expires.
fn expires(&self) -> bool;
/// Gets the date and time the implementor will expire if expires is true.
fn expiry_time(&self) -> DateTime<Utc>;
/// Gets the date and time the implementor was last accessed.
fn last_accessed(&self) -> DateTime<Utc>;
/// Gets the date and time the implementor was last modified.
fn last_modified(&self) -> DateTime<Utc>;
/// Gets the date and time the location of the implementor was changed.
fn location_changed(&self) -> DateTime<Utc>;
/// Gets the usage count for the implementor.
fn usage_count(&self) -> i32;
/// Sets the date and time the implementor was created.
fn set_creation_time(&mut self, _: DateTime<Utc>);
/// Sets whether the implementor expires.
fn set_expires(&mut self, _: bool);
/// Sets the date and time the implementor will expire if expires is true.
fn set_expiry_time(&mut self, _: DateTime<Utc>);
/// Sets the date and time the implementor was last accessed.
fn set_last_accessed(&mut self, _: DateTime<Utc>);
/// Sets the date and time the implementor was last modified.
fn set_last_modified(&mut self, _: DateTime<Utc>);
/// Sets the date and time the location of the implementor was changed.
fn set_location_changed(&mut self, _: DateTime<Utc>);
/// Sets the usage count for the implementor.
fn set_usage_count(&mut self, _: i32);
}