Struct chrono::offset::Local [−][src]
The local timescale. This is implemented via the standard time
crate.
Using the TimeZone
methods
on the Local struct is the preferred way to construct DateTime<Local>
instances.
Example
use chrono::{Local, DateTime, TimeZone}; let dt: DateTime<Local> = Local::now(); let dt: DateTime<Local> = Local.timestamp(0, 0);
Implementations
impl Local
[src][−]
pub fn today() -> Date<Local>
[src][−]
Returns a Date
which corresponds to the current date.
pub fn now() -> DateTime<Local>
[src][−]
Returns a DateTime
which corresponds to the current date.
Trait Implementations
impl Clone for Local
[src][+]
impl Copy for Local
[src]
impl Debug for Local
[src][+]
impl TimeZone for Local
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Local
impl Send for Local
impl Sync for Local
impl Unpin for Local
impl UnwindSafe for Local
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,