Struct icu::calendar::Ref

source ·
pub struct Ref<'a, C>(pub &'a C);
Expand description

This exists as a wrapper around &'a T so that Date<&'a C> is possible for calendar C.

Unfortunately, AsCalendar cannot be implemented on &'a T directly because &'a T is #[fundamental] and the impl would clash with the one above with AsCalendar for C: Calendar.

Use Date<Ref<'a, C>> where you would use Date<&'a C>

Tuple Fields§

§0: &'a C

Trait Implementations§

source§

impl<C> AsCalendar for Ref<'_, C>where C: Calendar,

§

type Calendar = C

The calendar being wrapped
source§

fn as_calendar(&self) -> &C

Obtain the inner calendar
source§

impl<C> Clone for Ref<'_, C>

source§

fn clone(&self) -> Ref<'_, C>

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<'a, C> Debug for Ref<'a, C>where C: Debug,

source§

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

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

impl<'a, C> Deref for Ref<'a, C>

§

type Target = C

The resulting type after dereferencing.
source§

fn deref(&self) -> &C

Dereferences the value.
source§

impl<'a, C> PartialEq for Ref<'a, C>where C: PartialEq,

source§

fn eq(&self, other: &Ref<'a, C>) -> 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<C> Copy for Ref<'_, C>

source§

impl<'a, C> Eq for Ref<'a, C>where C: Eq,

source§

impl<'a, C> StructuralEq for Ref<'a, C>

source§

impl<'a, C> StructuralPartialEq for Ref<'a, C>

Auto Trait Implementations§

§

impl<'a, C> RefUnwindSafe for Ref<'a, C>where C: RefUnwindSafe,

§

impl<'a, C> Send for Ref<'a, C>where C: Sync,

§

impl<'a, C> Sync for Ref<'a, C>where C: Sync,

§

impl<'a, C> Unpin for Ref<'a, C>

§

impl<'a, C> UnwindSafe for Ref<'a, C>where C: RefUnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

source§

impl<T, U> Into<U> for Twhere 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 Twhere 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 Twhere 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 Twhere 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> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for Twhere T: Send + Sync,