Struct iri_string::types::RiFragmentString
source · [−]pub struct RiFragmentString<S> { /* private fields */ }
Expand description
An owned string of an IRI fragment (i.e. after the first #
character).
This corresponds to ifragment
rule in RFC 3987 (and fragment
rule in RFC 3986).
The rule for absolute-IRI
is *( ipchar / "/" / "?" )
.
For details, see the documentation for RiFragmentStr
.
Enabled by alloc
or std
feature.
Implementations
sourceimpl<S: Spec> RiFragmentString<S>
impl<S: Spec> RiFragmentString<S>
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the inner buffer to match its length.
sourcepub fn as_slice(&self) -> &RiFragmentStr<S>
pub fn as_slice(&self) -> &RiFragmentStr<S>
Returns the borrowed IRI string slice.
This is equivalent to &*self
.
sourceimpl RiFragmentString<IriSpec>
impl RiFragmentString<IriSpec>
Conversion from an IRI into a URI.
sourcepub fn encode_to_uri(&mut self)
pub fn encode_to_uri(&mut self)
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
After the encode, the IRI is also a valid URI.
If you want a new URI string rather than modifying the IRI string,
use encode_into_uri
method.
If you need more precise control over memory allocation and buffer
handling, use MappedToUri
type.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::IriFragmentString;
let mut iri = IriFragmentString::try_from("alpha-is-\u{03B1}")?;
iri.encode_to_uri();
assert_eq!(iri, "alpha-is-%CE%B1");
sourcepub fn encode_into_uri(self) -> UriFragmentString
pub fn encode_into_uri(self) -> UriFragmentString
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
If you want to modify the value rather than creating a new
URI string, use encode_to_uri
method.
If you need more precise control over memory allocation and buffer
handling, use MappedToUri
type.
Examples
#[cfg(feature = "alloc")] {
use iri_string::types::{IriFragmentString, UriFragmentString};
let iri = IriFragmentString::try_from("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriFragmentString = iri.encode_into_uri();
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn try_into_uri(self) -> Result<UriFragmentString, IriFragmentString>
pub fn try_into_uri(self) -> Result<UriFragmentString, IriFragmentString>
Converts an IRI into a URI without modification, if possible.
Examples
use iri_string::types::{IriFragmentString, UriFragmentString};
let ascii_iri = IriFragmentString::try_from("alpha-is-%CE%B1")?;
assert_eq!(
ascii_iri.try_into_uri().map(|uri| uri.to_string()),
Ok("alpha-is-%CE%B1".to_string())
);
let nonascii_iri = IriFragmentString::try_from("alpha-is-\u{03B1}")?;
assert_eq!(
nonascii_iri.try_into_uri().map_err(|iri| iri.to_string()),
Err("alpha-is-\u{03B1}".to_string())
);
Methods from Deref<Target = RiFragmentStr<S>>
sourcepub fn encode_to_uri(&self) -> UriFragmentString
pub fn encode_to_uri(&self) -> UriFragmentString
Percent-encodes the IRI into a valid URI that identifies the equivalent resource.
If you need more precise control over memory allocation and buffer
handling, use MappedToUri
type.
Examples
use iri_string::types::{IriFragmentStr, UriFragmentString};
let iri = IriFragmentStr::new("alpha-is-\u{03B1}")?;
// Type annotation here is not necessary.
let uri: UriFragmentString = iri.encode_to_uri();
assert_eq!(uri, "alpha-is-%CE%B1");
sourcepub fn as_uri(&self) -> Option<&UriFragmentStr>
pub fn as_uri(&self) -> Option<&UriFragmentStr>
Converts an IRI into a URI without modification, if possible.
This is semantically equivalent to
UriFragmentStr::new(self.as_str()).ok()
.
Examples
use iri_string::types::{IriFragmentStr, UriFragmentStr};
let ascii_iri = IriFragmentStr::new("alpha-is-%CE%B1")?;
assert_eq!(
ascii_iri.as_uri().map(AsRef::as_ref),
Some("alpha-is-%CE%B1")
);
let nonascii_iri = IriFragmentStr::new("alpha-is-\u{03B1}")?;
assert_eq!(nonascii_iri.as_uri(), None);
Trait Implementations
sourceimpl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> AsRef<RiFragmentStr<S>> for RiFragmentString<S>
sourcefn as_ref(&self) -> &RiFragmentStr<S>
fn as_ref(&self) -> &RiFragmentStr<S>
Performs the conversion.
sourceimpl<S: Spec> AsRef<str> for RiFragmentString<S>
impl<S: Spec> AsRef<str> for RiFragmentString<S>
sourceimpl<S: Spec> Borrow<RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> Borrow<RiFragmentStr<S>> for RiFragmentString<S>
sourcefn borrow(&self) -> &RiFragmentStr<S>
fn borrow(&self) -> &RiFragmentStr<S>
Immutably borrows from an owned value. Read more
sourceimpl<S: Spec> Borrow<str> for RiFragmentString<S>
impl<S: Spec> Borrow<str> for RiFragmentString<S>
sourceimpl<S: Spec> Clone for RiFragmentString<S>
impl<S: Spec> Clone for RiFragmentString<S>
sourceimpl<S: Spec> Debug for RiFragmentString<S>
impl<S: Spec> Debug for RiFragmentString<S>
sourceimpl<S: Spec> Deref for RiFragmentString<S>
impl<S: Spec> Deref for RiFragmentString<S>
type Target = RiFragmentStr<S>
type Target = RiFragmentStr<S>
The resulting type after dereferencing.
sourcefn deref(&self) -> &RiFragmentStr<S>
fn deref(&self) -> &RiFragmentStr<S>
Dereferences the value.
sourceimpl<'de, S: Spec> Deserialize<'de> for RiFragmentString<S>
impl<'de, S: Spec> Deserialize<'de> for RiFragmentString<S>
sourcefn 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
sourceimpl<S: Spec> Display for RiFragmentString<S>
impl<S: Spec> Display for RiFragmentString<S>
sourceimpl<S: Spec> From<&'_ RiFragmentStr<S>> for RiFragmentString<S>
impl<S: Spec> From<&'_ RiFragmentStr<S>> for RiFragmentString<S>
sourcefn from(s: &RiFragmentStr<S>) -> Self
fn from(s: &RiFragmentStr<S>) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a RiFragmentString<IriSpec>> for MappedToUri<'a, IriFragmentStr>
impl<'a> From<&'a RiFragmentString<IriSpec>> for MappedToUri<'a, IriFragmentStr>
sourcefn from(iri: &'a IriFragmentString) -> Self
fn from(iri: &'a IriFragmentString) -> Self
Performs the conversion.
sourceimpl<'a> From<&'a RiFragmentString<UriSpec>> for MappedToUri<'a, UriFragmentStr>
impl<'a> From<&'a RiFragmentString<UriSpec>> for MappedToUri<'a, UriFragmentStr>
sourcefn from(iri: &'a UriFragmentString) -> Self
fn from(iri: &'a UriFragmentString) -> Self
Performs the conversion.
sourceimpl<S: Spec> From<RiFragmentString<S>> for String
impl<S: Spec> From<RiFragmentString<S>> for String
sourcefn from(s: RiFragmentString<S>) -> Self
fn from(s: RiFragmentString<S>) -> Self
Performs the conversion.
sourceimpl From<RiFragmentString<UriSpec>> for IriFragmentString
impl From<RiFragmentString<UriSpec>> for IriFragmentString
sourcefn from(uri: UriFragmentString) -> Self
fn from(uri: UriFragmentString) -> Self
Performs the conversion.
sourceimpl<S: Spec> FromStr for RiFragmentString<S>
impl<S: Spec> FromStr for RiFragmentString<S>
sourceimpl<S: Spec> Hash for RiFragmentString<S>
impl<S: Spec> Hash for RiFragmentString<S>
sourceimpl<S: Spec> Ord for RiFragmentString<S>
impl<S: Spec> Ord for RiFragmentString<S>
sourceimpl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialEq<&'_ RiFragmentStr<S>> for RiFragmentString<T>
sourceimpl<S: Spec> PartialEq<&'_ str> for RiFragmentString<S>
impl<S: Spec> PartialEq<&'_ str> for RiFragmentString<S>
sourceimpl<S: Spec, T: Spec> PartialEq<Cow<'_, RiFragmentStr<S>>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialEq<Cow<'_, RiFragmentStr<S>>> for RiFragmentString<T>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialEq<RiFragmentStr<S>> for RiFragmentString<T>
sourceimpl<S: Spec> PartialEq<RiFragmentString<S>> for str
impl<S: Spec> PartialEq<RiFragmentString<S>> for str
sourceimpl<S: Spec> PartialEq<RiFragmentString<S>> for &str
impl<S: Spec> PartialEq<RiFragmentString<S>> for &str
sourceimpl<S: Spec> PartialEq<RiFragmentString<S>> for String
impl<S: Spec> PartialEq<RiFragmentString<S>> for String
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentString<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentString<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for RiFragmentStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for &RiFragmentStr<S>
sourceimpl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for Cow<'_, RiFragmentStr<S>>
impl<S: Spec, T: Spec> PartialEq<RiFragmentString<T>> for Cow<'_, RiFragmentStr<S>>
sourceimpl<S: Spec> PartialEq<String> for RiFragmentString<S>
impl<S: Spec> PartialEq<String> for RiFragmentString<S>
sourceimpl<S: Spec> PartialEq<str> for RiFragmentString<S>
impl<S: Spec> PartialEq<str> for RiFragmentString<S>
sourceimpl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialOrd<&'_ RiFragmentStr<S>> for RiFragmentString<T>
sourcefn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &&RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<&'_ str> for RiFragmentString<S>
impl<S: Spec> PartialOrd<&'_ str> for RiFragmentString<S>
sourcefn partial_cmp(&self, o: &&str) -> Option<Ordering>
fn partial_cmp(&self, o: &&str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiFragmentStr<S>>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialOrd<Cow<'_, RiFragmentStr<S>>> for RiFragmentString<T>
sourcefn partial_cmp(&self, o: &Cow<'_, RiFragmentStr<S>>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, RiFragmentStr<S>>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<Cow<'_, str>> for RiFragmentString<S>
impl<S: Spec> PartialOrd<Cow<'_, str>> for RiFragmentString<S>
sourcefn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
fn partial_cmp(&self, o: &Cow<'_, str>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentString<T>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentStr<S>> for RiFragmentString<T>
sourcefn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentStr<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<RiFragmentString<S>> for str
impl<S: Spec> PartialOrd<RiFragmentString<S>> for str
sourcefn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<RiFragmentString<S>> for &str
impl<S: Spec> PartialOrd<RiFragmentString<S>> for &str
sourcefn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<RiFragmentString<S>> for Cow<'_, str>
impl<S: Spec> PartialOrd<RiFragmentString<S>> for Cow<'_, str>
sourcefn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<RiFragmentString<S>> for String
impl<S: Spec> PartialOrd<RiFragmentString<S>> for String
sourcefn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<S>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentString<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentString<S>
sourcefn partial_cmp(&self, other: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for &RiFragmentStr<S>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for &RiFragmentStr<S>
sourcefn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for Cow<'_, RiFragmentStr<S>>
impl<S: Spec, T: Spec> PartialOrd<RiFragmentString<T>> for Cow<'_, RiFragmentStr<S>>
sourcefn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
fn partial_cmp(&self, o: &RiFragmentString<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<String> for RiFragmentString<S>
impl<S: Spec> PartialOrd<String> for RiFragmentString<S>
sourcefn partial_cmp(&self, o: &String) -> Option<Ordering>
fn partial_cmp(&self, o: &String) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S: Spec> PartialOrd<str> for RiFragmentString<S>
impl<S: Spec> PartialOrd<str> for RiFragmentString<S>
sourcefn partial_cmp(&self, o: &str) -> Option<Ordering>
fn partial_cmp(&self, o: &str) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<S> Serialize for RiFragmentString<S> where
S: Spec,
impl<S> Serialize for RiFragmentString<S> where
S: Spec,
sourceimpl<S: Spec> TryFrom<&'_ str> for RiFragmentString<S>
impl<S: Spec> TryFrom<&'_ str> for RiFragmentString<S>
sourceimpl<S: Spec> TryFrom<String> for RiFragmentString<S>
impl<S: Spec> TryFrom<String> for RiFragmentString<S>
impl<S: Spec> Eq for RiFragmentString<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for RiFragmentString<S>
impl<S> Send for RiFragmentString<S>
impl<S> Sync for RiFragmentString<S>
impl<S> Unpin for RiFragmentString<S>
impl<S> UnwindSafe for RiFragmentString<S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more