Enum gpui2::ArcCow

pub enum ArcCow<'a, T>where
    T: ?Sized,{
    Borrowed(&'a T),
    Owned(Arc<T, Global>),
}

Variants§

§

Borrowed(&'a T)

§

Owned(Arc<T, Global>)

Trait Implementations§

§

impl<T> AsRef<T> for ArcCow<'_, T>where T: ?Sized,

§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
§

impl<'a, T> Borrow<T> for ArcCow<'a, T>where T: ToOwned + ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<'a, T> Clone for ArcCow<'a, T>where T: ?Sized,

§

fn clone(&self) -> ArcCow<'a, T>

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
§

impl<'a, T> Debug for ArcCow<'a, T>where T: Debug + ?Sized,

§

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

Formats the value using the given formatter. Read more
§

impl<T> Deref for ArcCow<'_, T>where T: ?Sized,

§

type Target = T

The resulting type after dereferencing.
§

fn deref(&self) -> &<ArcCow<'_, T> as Deref>::Target

Dereferences the value.
§

impl<'a, T> From<&'a T> for ArcCow<'a, T>where T: ?Sized,

§

fn from(s: &'a T) -> ArcCow<'a, T>

Converts to this type from the input type.
§

impl<'a> From<&'a str> for ArcCow<'a, [u8]>

§

fn from(s: &'a str) -> ArcCow<'a, [u8]>

Converts to this type from the input type.
§

impl<T> From<Arc<T, Global>> for ArcCow<'_, T>

§

fn from(s: Arc<T, Global>) -> ArcCow<'_, T>

Converts to this type from the input type.
§

impl<'a> From<Cow<'a, str>> for ArcCow<'a, str>

§

fn from(value: Cow<'a, str>) -> ArcCow<'a, str>

Converts to this type from the input type.
§

impl From<String> for ArcCow<'_, str>

§

fn from(value: String) -> ArcCow<'_, str>

Converts to this type from the input type.
§

impl<T> From<Vec<T, Global>> for ArcCow<'_, [T]>

§

fn from(vec: Vec<T, Global>) -> ArcCow<'_, [T]>

Converts to this type from the input type.
§

impl<'a, T> Hash for ArcCow<'a, T>where T: Hash + ?Sized,

§

fn hash<H>(&self, state: &mut H)where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<'a, T> PartialEq<ArcCow<'a, T>> for ArcCow<'a, T>where T: PartialEq<T> + ?Sized,

§

fn eq(&self, other: &ArcCow<'a, T>) -> 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.
§

impl<'a, T> Eq for ArcCow<'a, T>where T: Eq + ?Sized,

Auto Trait Implementations§

§

impl<'a, T: ?Sized> RefUnwindSafe for ArcCow<'a, T>where T: RefUnwindSafe,

§

impl<'a, T: ?Sized> Send for ArcCow<'a, T>where T: Send + Sync,

§

impl<'a, T: ?Sized> Sync for ArcCow<'a, T>where T: Send + Sync,

§

impl<'a, T: ?Sized> Unpin for ArcCow<'a, T>

§

impl<'a, T: ?Sized> UnwindSafe for ArcCow<'a, T>where T: 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> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

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

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T> Instrument for T

source§

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

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

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 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.

§

impl<T> PathExt for Twhere T: AsRef<Path>,

§

fn compact(&self) -> PathBuf

Compacts a given file path by replacing the user’s home directory prefix with a tilde (~).

Returns
  • A PathBuf containing the compacted file path. If the input path does not have the user’s home directory prefix, or if we are not on Linux or macOS, the original path is returned unchanged.
§

fn icon_suffix(&self) -> Option<&str>

Returns a suffix of the path that is used to determine which file icon to use

§

fn extension_or_hidden_file_name(&self) -> Option<&str>

Returns a file’s extension or, if the file is hidden, its name without the leading dot

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
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<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> Formattable for Twhere T: Deref, <T as Deref>::Target: Formattable,

§

impl<T> Parsable for Twhere T: Deref, <T as Deref>::Target: Parsable,