Struct saturn_cli::record::Record

source ·
pub struct Record { /* private fields */ }

Implementations§

source§

impl Record

source

pub fn primary_key(&self) -> u64

source

pub fn recurrence_key(&self) -> Option<u64>

source

pub fn internal_recurrence_key(&self) -> Option<String>

source

pub fn internal_key(&self) -> Option<String>

source

pub fn set_internal_key(&mut self, key: Option<String>)

source

pub fn record_type(&self) -> RecordType

source

pub fn datetime(&self) -> DateTime<Local>

source

pub fn completed(&self) -> bool

source

pub fn date(&self) -> NaiveDate

source

pub fn at(&self) -> Option<NaiveTime>

source

pub fn scheduled(&self) -> Option<Schedule>

source

pub fn all_day(&self) -> bool

source

pub fn detail(&self) -> String

source

pub fn fields(&self) -> Fields

source

pub fn set_fields(&mut self, fields: Fields)

source

pub fn notifications(&self) -> Option<Notifications>

source

pub fn build() -> Self

source

pub async fn record(&self, db: MemoryDB) -> Result<()>

source

pub fn set_internal_recurrence_key( &mut self, internal_recurrence_key: Option<String> )

source

pub fn set_primary_key(&mut self, primary_key: u64) -> &mut Self

source

pub fn set_recurrence_key(&mut self, key: Option<u64>) -> &mut Self

source

pub fn set_record_type(&mut self, typ: RecordType) -> &mut Self

source

pub fn set_all_day(&mut self) -> &mut Self

source

pub fn set_completed(&mut self, completed: bool) -> &mut Self

source

pub fn set_date(&mut self, date: NaiveDate) -> &mut Self

source

pub fn set_at(&mut self, at: Option<NaiveTime>) -> &mut Self

source

pub fn set_scheduled(&mut self, schedule: Option<Schedule>) -> &mut Self

source

pub fn set_detail(&mut self, detail: String) -> &mut Self

source

pub fn add_field(&mut self, field: String, content: String) -> &mut Self

source

pub fn get_field(&self, field: String) -> Option<Vec<String>>

source

pub fn add_notification(&mut self, notification: Duration) -> &mut Self

source

pub fn set_notifications(&mut self, notifications: Option<Notifications>)

Trait Implementations§

source§

impl Clone for Record

source§

fn clone(&self) -> Record

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Record

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Record

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Record

source§

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 From<Record> for PresentedRecord

source§

fn from(value: Record) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Record

source§

fn eq(&self, other: &Record) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Record

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for Record

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,