Struct icu_provider::hello_world::HelloWorldV1
source · pub struct HelloWorldV1<'data> {
pub message: Cow<'data, str>,
}
Expand description
A struct containing “Hello World” in the requested language.
Fields§
§message: Cow<'data, str>
The translation of “Hello World”.
Trait Implementations§
source§impl<'data> Bake for HelloWorldV1<'data>
impl<'data> Bake for HelloWorldV1<'data>
source§fn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
source§impl<'data> BakeSize for HelloWorldV1<'data>
impl<'data> BakeSize for HelloWorldV1<'data>
source§fn borrows_size(&self) -> usize
fn borrows_size(&self) -> usize
Returns the size
source§impl<'data> Clone for HelloWorldV1<'data>
impl<'data> Clone for HelloWorldV1<'data>
source§fn clone(&self) -> HelloWorldV1<'data>
fn clone(&self) -> HelloWorldV1<'data>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'data> Debug for HelloWorldV1<'data>
impl<'data> Debug for HelloWorldV1<'data>
source§impl Default for HelloWorldV1<'_>
impl Default for HelloWorldV1<'_>
source§impl<'de: 'data, 'data> Deserialize<'de> for HelloWorldV1<'data>
impl<'de: 'data, 'data> Deserialize<'de> for HelloWorldV1<'data>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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<'data> PartialEq for HelloWorldV1<'data>
impl<'data> PartialEq for HelloWorldV1<'data>
source§impl<'data> Serialize for HelloWorldV1<'data>
impl<'data> Serialize for HelloWorldV1<'data>
source§impl<'a> Yokeable<'a> for HelloWorldV1<'static>
impl<'a> Yokeable<'a> for HelloWorldV1<'static>
source§type Output = HelloWorldV1<'a>
type Output = HelloWorldV1<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
source§unsafe fn make(this: Self::Output) -> Self
unsafe fn make(this: Self::Output) -> Self
This method can be used to cast away
Self<'a>
’s lifetime. Read moresource§fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
This method must cast
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresource§impl<'zf, 'zf_inner> ZeroFrom<'zf, HelloWorldV1<'zf_inner>> for HelloWorldV1<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, HelloWorldV1<'zf_inner>> for HelloWorldV1<'zf>
source§fn zero_from(this: &'zf HelloWorldV1<'zf_inner>) -> Self
fn zero_from(this: &'zf HelloWorldV1<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for HelloWorldV1<'data>
Auto Trait Implementations§
impl<'data> Freeze for HelloWorldV1<'data>
impl<'data> RefUnwindSafe for HelloWorldV1<'data>
impl<'data> Send for HelloWorldV1<'data>
impl<'data> Sync for HelloWorldV1<'data>
impl<'data> Unpin for HelloWorldV1<'data>
impl<'data> UnwindSafe for HelloWorldV1<'data>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more