Trait AsRef

1.6.0 (const: unstable) ยท Source
pub trait AsRef<T>
where T: ?Sized,
{ // Required method fn as_ref(&self) -> &T; }
Expand description

Used to do a cheap reference-to-reference conversion.

This trait is similar to AsMut which is used for converting between mutable references. If you need to do a costly conversion it is better to implement From with type &T or write a custom function.

ยงRelation to Borrow

AsRef has the same signature as Borrow, but Borrow is different in a few aspects:

  • Unlike AsRef, Borrow has a blanket impl for any T, and can be used to accept either a reference or a value. (See also note on AsRefโ€™s reflexibility below.)
  • Borrow also requires that Hash, Eq and Ord for a borrowed value are equivalent to those of the owned value. For this reason, if you want to borrow only a single field of a struct you can implement AsRef, but not Borrow.

Note: This trait must not fail. If the conversion can fail, use a dedicated method which returns an Option<T> or a Result<T, E>.

ยงGeneric Implementations

AsRef auto-dereferences if the inner type is a reference or a mutable reference (e.g.: foo.as_ref() will work the same if foo has type &mut Foo or &&mut Foo).

Note that due to historic reasons, the above currently does not hold generally for all dereferenceable types, e.g. foo.as_ref() will not work the same as Box::new(foo).as_ref(). Instead, many smart pointers provide an as_ref implementation which simply returns a reference to the pointed-to value (but do not perform a cheap reference-to-reference conversion for that value). However, AsRef::as_ref should not be used for the sole purpose of dereferencing; instead โ€˜Deref coercionโ€™ can be used:

let x = Box::new(5i32);
// Avoid this:
// let y: &i32 = x.as_ref();
// Better just write:
let y: &i32 = &x;

Types which implement Deref should consider implementing AsRef<T> as follows:

impl<T> AsRef<T> for SomeType
where
    T: ?Sized,
    <SomeType as Deref>::Target: AsRef<T>,
{
    fn as_ref(&self) -> &T {
        self.deref().as_ref()
    }
}

ยงReflexivity

Ideally, AsRef would be reflexive, i.e. there would be an impl<T: ?Sized> AsRef<T> for T with as_ref simply returning its argument unchanged. Such a blanket implementation is currently not provided due to technical restrictions of Rustโ€™s type system (it would be overlapping with another existing blanket implementation for &T where T: AsRef<U> which allows AsRef to auto-dereference, see โ€œGeneric Implementationsโ€ above).

A trivial implementation of AsRef<T> for T must be added explicitly for a particular type T where needed or desired. Note, however, that not all types from std contain such an implementation, and those cannot be added by external code due to orphan rules.

ยงExamples

By using trait bounds we can accept arguments of different types as long as they can be converted to the specified type T.

For example: By creating a generic function that takes an AsRef<str> we express that we want to accept all references that can be converted to &str as an argument. Since both String and &str implement AsRef<str> we can accept both as input argument.

fn is_hello<T: AsRef<str>>(s: T) {
   assert_eq!("hello", s.as_ref());
}

let s = "hello";
is_hello(s);

let s = "hello".to_string();
is_hello(s);

Required Methodsยง

1.0.0 ยท Source

fn as_ref(&self) -> &T

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

Implementorsยง

Sourceยง

impl AsRef<str> for CowStr

1.0.0 (const: unstable) ยท Sourceยง

impl AsRef<str> for str

Sourceยง

impl AsRef<str> for ArchiveId

Sourceยง

impl AsRef<str> for BaseURI

Sourceยง

impl AsRef<str> for NameStep

ยง

impl AsRef<str> for HeaderName

ยง

impl AsRef<str> for Method

ยง

impl AsRef<str> for Authority

ยง

impl AsRef<str> for Scheme

1.0.0 ยท Sourceยง

impl AsRef<str> for String

Sourceยง

impl AsRef<str> for Mime

Sourceยง

impl AsRef<str> for OpensslString

Sourceยง

impl AsRef<str> for OpensslStringRef

Sourceยง

impl AsRef<str> for url::Url

Return the serialization of this URL.

ยง

impl AsRef<str> for Algorithm

ยง

impl AsRef<str> for ArchivedString

ยง

impl AsRef<str> for BasicErrorResponseType

ยง

impl AsRef<str> for BasicTokenType

ยง

impl AsRef<str> for DeviceCodeErrorResponseType

ยง

impl AsRef<str> for DnsName<'_>

ยง

impl AsRef<str> for Field

ยง

impl AsRef<str> for Iter<'_>

ยง

impl AsRef<str> for PasswordHashString

ยง

impl AsRef<str> for RequestUrl

ยง

impl AsRef<str> for ResolvedStaticPath

ยง

impl AsRef<str> for RevocationErrorResponseType

ยง

impl AsRef<str> for SaltString

ยง

impl AsRef<str> for Scope

ยง

impl AsRef<str> for UriTemplateStr

ยง

impl AsRef<str> for UriTemplateString

ยง

impl AsRef<str> for Utf8Bytes

ยง

impl AsRef<str> for Utf8Component<'_>

ยง

impl AsRef<str> for Utf8Components<'_>

ยง

impl AsRef<str> for Utf8Path

ยง

impl AsRef<str> for Utf8PathBuf

Sourceยง

impl AsRef<Notation> for Notation

Sourceยง

impl AsRef<BuildArtifactType> for BuildArtifactTypeId

Sourceยง

impl AsRef<BuildTarget> for BuildTargetId

Sourceยง

impl AsRef<FLAMSExtension> for FLAMSExtensionId

Sourceยง

impl AsRef<SourceFormat> for SourceFormatId

ยง

impl AsRef<Bytes> for Utf8Bytes

Sourceยง

impl AsRef<ByteStr> for str

Sourceยง

impl AsRef<ByteStr> for ByteStr

Sourceยง

impl AsRef<ByteStr> for ByteString

1.7.0 ยท Sourceยง

impl AsRef<CStr> for CStr

1.7.0 ยท Sourceยง

impl AsRef<CStr> for CString

ยง

impl AsRef<CStr> for ArchivedCString

Sourceยง

impl AsRef<LocalWaker> for Waker

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for Component<'_>

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for str

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for String

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for OsStr

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for OsString

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for Components<'_>

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for std::path::Iter<'_>

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for Path

1.0.0 ยท Sourceยง

impl AsRef<OsStr> for PathBuf

Sourceยง

impl AsRef<OsStr> for TempPath

ยง

impl AsRef<OsStr> for Iter<'_>

ยง

impl AsRef<OsStr> for Utf8Component<'_>

ยง

impl AsRef<OsStr> for Utf8Components<'_>

ยง

impl AsRef<OsStr> for Utf8Path

ยง

impl AsRef<OsStr> for Utf8PathBuf

ยง

impl AsRef<Path> for Oco<'_, str>

ยง

impl AsRef<Path> for Oco<'_, OsStr>

1.8.0 ยท Sourceยง

impl AsRef<Path> for Cow<'_, OsStr>

1.25.0 ยท Sourceยง

impl AsRef<Path> for Component<'_>

1.0.0 ยท Sourceยง

impl AsRef<Path> for str

1.0.0 ยท Sourceยง

impl AsRef<Path> for String

1.0.0 ยท Sourceยง

impl AsRef<Path> for OsStr

1.0.0 ยท Sourceยง

impl AsRef<Path> for OsString

1.0.0 ยท Sourceยง

impl AsRef<Path> for Components<'_>

1.0.0 ยท Sourceยง

impl AsRef<Path> for std::path::Iter<'_>

1.0.0 ยท Sourceยง

impl AsRef<Path> for Path

1.0.0 ยท Sourceยง

impl AsRef<Path> for PathBuf

Sourceยง

impl AsRef<Path> for TempDir

Sourceยง

impl AsRef<Path> for TempPath

ยง

impl AsRef<Path> for DecInt

ยง

impl AsRef<Path> for Iter<'_>

ยง

impl AsRef<Path> for Utf8Component<'_>

ยง

impl AsRef<Path> for Utf8Components<'_>

ยง

impl AsRef<Path> for Utf8Path

ยง

impl AsRef<Path> for Utf8PathBuf

ยง

impl AsRef<DateTime<Utc>> for HookDate

Sourceยง

impl AsRef<Collator> for Collator

Sourceยง

impl AsRef<DateTimeFormat> for DateTimeFormat

Sourceยง

impl AsRef<NumberFormat> for NumberFormat

Sourceยง

impl AsRef<PluralRules> for PluralRules

Sourceยง

impl AsRef<RelativeTimeFormat> for RelativeTimeFormat

Sourceยง

impl AsRef<CompileError> for CompileError

Sourceยง

impl AsRef<Exception> for Exception

Sourceยง

impl AsRef<Global> for Global

Sourceยง

impl AsRef<Instance> for Instance

Sourceยง

impl AsRef<LinkError> for LinkError

Sourceยง

impl AsRef<Memory> for Memory

Sourceยง

impl AsRef<Module> for Module

Sourceยง

impl AsRef<RuntimeError> for RuntimeError

Sourceยง

impl AsRef<Table> for Table

Sourceยง

impl AsRef<Tag> for js_sys::WebAssembly::Tag

Sourceยง

impl AsRef<Array> for Array

Sourceยง

impl AsRef<ArrayBuffer> for ArrayBuffer

Sourceยง

impl AsRef<AsyncIterator> for AsyncIterator

Sourceยง

impl AsRef<BigInt64Array> for BigInt64Array

Sourceยง

impl AsRef<BigInt> for BigInt

Sourceยง

impl AsRef<BigUint64Array> for BigUint64Array

Sourceยง

impl AsRef<Boolean> for Boolean

Sourceยง

impl AsRef<DataView> for DataView

Sourceยง

impl AsRef<Date> for Date

Sourceยง

impl AsRef<Error> for CompileError

Sourceยง

impl AsRef<Error> for LinkError

Sourceยง

impl AsRef<Error> for RuntimeError

Sourceยง

impl AsRef<Error> for js_sys::Error

Sourceยง

impl AsRef<Error> for EvalError

Sourceยง

impl AsRef<Error> for RangeError

Sourceยง

impl AsRef<Error> for ReferenceError

Sourceยง

impl AsRef<Error> for SyntaxError

Sourceยง

impl AsRef<Error> for TypeError

Sourceยง

impl AsRef<Error> for UriError

Sourceยง

impl AsRef<EvalError> for EvalError

Sourceยง

impl AsRef<Float32Array> for Float32Array

Sourceยง

impl AsRef<Float64Array> for Float64Array

Sourceยง

impl AsRef<Function> for Function

Sourceยง

impl AsRef<Generator> for Generator

Sourceยง

impl AsRef<Int8Array> for Int8Array

Sourceยง

impl AsRef<Int16Array> for Int16Array

Sourceยง

impl AsRef<Int32Array> for Int32Array

Sourceยง

impl AsRef<Iterator> for Iterator

Sourceยง

impl AsRef<IteratorNext> for IteratorNext

Sourceยง

impl AsRef<JsString> for JsString

Sourceยง

impl AsRef<Map> for js_sys::Map

Sourceยง

impl AsRef<Number> for Number

Sourceยง

impl AsRef<Object> for Collator

Sourceยง

impl AsRef<Object> for DateTimeFormat

Sourceยง

impl AsRef<Object> for NumberFormat

Sourceยง

impl AsRef<Object> for PluralRules

Sourceยง

impl AsRef<Object> for RelativeTimeFormat

Sourceยง

impl AsRef<Object> for Exception

Sourceยง

impl AsRef<Object> for Global

Sourceยง

impl AsRef<Object> for Instance

Sourceยง

impl AsRef<Object> for Memory

Sourceยง

impl AsRef<Object> for Module

Sourceยง

impl AsRef<Object> for Table

Sourceยง

impl AsRef<Object> for js_sys::WebAssembly::Tag

Sourceยง

impl AsRef<Object> for Array

Sourceยง

impl AsRef<Object> for ArrayBuffer

Sourceยง

impl AsRef<Object> for BigInt64Array

Sourceยง

impl AsRef<Object> for BigInt

Sourceยง

impl AsRef<Object> for BigUint64Array

Sourceยง

impl AsRef<Object> for Boolean

Sourceยง

impl AsRef<Object> for DataView

Sourceยง

impl AsRef<Object> for Date

Sourceยง

impl AsRef<Object> for js_sys::Error

Sourceยง

impl AsRef<Object> for EvalError

Sourceยง

impl AsRef<Object> for Float32Array

Sourceยง

impl AsRef<Object> for Float64Array

Sourceยง

impl AsRef<Object> for Function

Sourceยง

impl AsRef<Object> for Generator

Sourceยง

impl AsRef<Object> for Int8Array

Sourceยง

impl AsRef<Object> for Int16Array

Sourceยง

impl AsRef<Object> for Int32Array

Sourceยง

impl AsRef<Object> for IteratorNext

Sourceยง

impl AsRef<Object> for JsString

Sourceยง

impl AsRef<Object> for js_sys::Map

Sourceยง

impl AsRef<Object> for Number

Sourceยง

impl AsRef<Object> for Object

Sourceยง

impl AsRef<Object> for Promise

Sourceยง

impl AsRef<Object> for RangeError

Sourceยง

impl AsRef<Object> for ReferenceError

Sourceยง

impl AsRef<Object> for RegExp

Sourceยง

impl AsRef<Object> for Set

Sourceยง

impl AsRef<Object> for SharedArrayBuffer

Sourceยง

impl AsRef<Object> for SyntaxError

Sourceยง

impl AsRef<Object> for TypeError

Sourceยง

impl AsRef<Object> for Uint8Array

Sourceยง

impl AsRef<Object> for Uint8ClampedArray

Sourceยง

impl AsRef<Object> for Uint16Array

Sourceยง

impl AsRef<Object> for Uint32Array

Sourceยง

impl AsRef<Object> for UriError

Sourceยง

impl AsRef<Object> for WeakMap

Sourceยง

impl AsRef<Object> for WeakSet

Sourceยง

impl AsRef<Object> for AbortController

Sourceยง

impl AsRef<Object> for AbortSignal

Sourceยง

impl AsRef<Object> for AddEventListenerOptions

Sourceยง

impl AsRef<Object> for AnimationEvent

Sourceยง

impl AsRef<Object> for BeforeUnloadEvent

Sourceยง

impl AsRef<Object> for Blob

Sourceยง

impl AsRef<Object> for CharacterData

Sourceยง

impl AsRef<Object> for ClipboardEvent

Sourceยง

impl AsRef<Object> for CloseEvent

Sourceยง

impl AsRef<Object> for CloseEventInit

Sourceยง

impl AsRef<Object> for Comment

Sourceยง

impl AsRef<Object> for CompositionEvent

Sourceยง

impl AsRef<Object> for CssStyleDeclaration

Sourceยง

impl AsRef<Object> for CustomEvent

Sourceยง

impl AsRef<Object> for DataTransfer

Sourceยง

impl AsRef<Object> for DeviceMotionEvent

Sourceยง

impl AsRef<Object> for DeviceOrientationEvent

Sourceยง

impl AsRef<Object> for web_sys::features::gen_Document::Document

Sourceยง

impl AsRef<Object> for DocumentFragment

Sourceยง

impl AsRef<Object> for DomRect

Sourceยง

impl AsRef<Object> for DomRectReadOnly

Sourceยง

impl AsRef<Object> for DomStringMap

Sourceยง

impl AsRef<Object> for DomTokenList

Sourceยง

impl AsRef<Object> for DragEvent

Sourceยง

impl AsRef<Object> for Element

Sourceยง

impl AsRef<Object> for ErrorEvent

Sourceยง

impl AsRef<Object> for web_sys::features::gen_Event::Event

Sourceยง

impl AsRef<Object> for EventSource

Sourceยง

impl AsRef<Object> for EventTarget

Sourceยง

impl AsRef<Object> for File

Sourceยง

impl AsRef<Object> for FileList

Sourceยง

impl AsRef<Object> for FileReader

Sourceยง

impl AsRef<Object> for FocusEvent

Sourceยง

impl AsRef<Object> for FormData

Sourceยง

impl AsRef<Object> for GamepadEvent

Sourceยง

impl AsRef<Object> for HashChangeEvent

Sourceยง

impl AsRef<Object> for Headers

Sourceยง

impl AsRef<Object> for History

Sourceยง

impl AsRef<Object> for HtmlAnchorElement

Sourceยง

impl AsRef<Object> for HtmlAreaElement

Sourceยง

impl AsRef<Object> for HtmlAudioElement

Sourceยง

impl AsRef<Object> for HtmlBaseElement

Sourceยง

impl AsRef<Object> for HtmlBodyElement

Sourceยง

impl AsRef<Object> for HtmlBrElement

Sourceยง

impl AsRef<Object> for HtmlButtonElement

Sourceยง

impl AsRef<Object> for HtmlCanvasElement

Sourceยง

impl AsRef<Object> for HtmlCollection

Sourceยง

impl AsRef<Object> for HtmlDListElement

Sourceยง

impl AsRef<Object> for HtmlDataElement

Sourceยง

impl AsRef<Object> for HtmlDataListElement

Sourceยง

impl AsRef<Object> for HtmlDetailsElement

Sourceยง

impl AsRef<Object> for HtmlDialogElement

Sourceยง

impl AsRef<Object> for HtmlDivElement

Sourceยง

impl AsRef<Object> for HtmlElement

Sourceยง

impl AsRef<Object> for HtmlEmbedElement

Sourceยง

impl AsRef<Object> for HtmlFieldSetElement

Sourceยง

impl AsRef<Object> for HtmlFormElement

Sourceยง

impl AsRef<Object> for HtmlHeadElement

Sourceยง

impl AsRef<Object> for HtmlHeadingElement

Sourceยง

impl AsRef<Object> for HtmlHrElement

Sourceยง

impl AsRef<Object> for HtmlHtmlElement

Sourceยง

impl AsRef<Object> for HtmlIFrameElement

Sourceยง

impl AsRef<Object> for HtmlImageElement

Sourceยง

impl AsRef<Object> for HtmlInputElement

Sourceยง

impl AsRef<Object> for HtmlLabelElement

Sourceยง

impl AsRef<Object> for HtmlLegendElement

Sourceยง

impl AsRef<Object> for HtmlLiElement

Sourceยง

impl AsRef<Object> for HtmlLinkElement

Sourceยง

impl AsRef<Object> for HtmlMapElement

Sourceยง

impl AsRef<Object> for HtmlMediaElement

Sourceยง

impl AsRef<Object> for HtmlMenuElement

Sourceยง

impl AsRef<Object> for HtmlMetaElement

Sourceยง

impl AsRef<Object> for HtmlMeterElement

Sourceยง

impl AsRef<Object> for HtmlModElement

Sourceยง

impl AsRef<Object> for HtmlOListElement

Sourceยง

impl AsRef<Object> for HtmlObjectElement

Sourceยง

impl AsRef<Object> for HtmlOptGroupElement

Sourceยง

impl AsRef<Object> for HtmlOptionElement

Sourceยง

impl AsRef<Object> for HtmlOutputElement

Sourceยง

impl AsRef<Object> for HtmlParagraphElement

Sourceยง

impl AsRef<Object> for HtmlParamElement

Sourceยง

impl AsRef<Object> for HtmlPictureElement

Sourceยง

impl AsRef<Object> for HtmlPreElement

Sourceยง

impl AsRef<Object> for HtmlProgressElement

Sourceยง

impl AsRef<Object> for HtmlQuoteElement

Sourceยง

impl AsRef<Object> for HtmlScriptElement

Sourceยง

impl AsRef<Object> for HtmlSelectElement

Sourceยง

impl AsRef<Object> for HtmlSlotElement

Sourceยง

impl AsRef<Object> for HtmlSourceElement

Sourceยง

impl AsRef<Object> for HtmlSpanElement

Sourceยง

impl AsRef<Object> for HtmlStyleElement

Sourceยง

impl AsRef<Object> for HtmlTableCaptionElement

Sourceยง

impl AsRef<Object> for HtmlTableCellElement

Sourceยง

impl AsRef<Object> for HtmlTableColElement

Sourceยง

impl AsRef<Object> for HtmlTableElement

Sourceยง

impl AsRef<Object> for HtmlTableRowElement

Sourceยง

impl AsRef<Object> for HtmlTableSectionElement

Sourceยง

impl AsRef<Object> for HtmlTemplateElement

Sourceยง

impl AsRef<Object> for HtmlTextAreaElement

Sourceยง

impl AsRef<Object> for HtmlTimeElement

Sourceยง

impl AsRef<Object> for HtmlTitleElement

Sourceยง

impl AsRef<Object> for HtmlTrackElement

Sourceยง

impl AsRef<Object> for HtmlUListElement

Sourceยง

impl AsRef<Object> for HtmlVideoElement

Sourceยง

impl AsRef<Object> for InputEvent

Sourceยง

impl AsRef<Object> for KeyboardEvent

Sourceยง

impl AsRef<Object> for Location

Sourceยง

impl AsRef<Object> for MessageEvent

Sourceยง

impl AsRef<Object> for MouseEvent

Sourceยง

impl AsRef<Object> for MutationObserver

Sourceยง

impl AsRef<Object> for MutationObserverInit

Sourceยง

impl AsRef<Object> for MutationRecord

Sourceยง

impl AsRef<Object> for Node

Sourceยง

impl AsRef<Object> for NodeFilter

Sourceยง

impl AsRef<Object> for NodeList

Sourceยง

impl AsRef<Object> for ObserverCallback

Sourceยง

impl AsRef<Object> for PageTransitionEvent

Sourceยง

impl AsRef<Object> for PointerEvent

Sourceยง

impl AsRef<Object> for PopStateEvent

Sourceยง

impl AsRef<Object> for ProgressEvent

Sourceยง

impl AsRef<Object> for PromiseRejectionEvent

Sourceยง

impl AsRef<Object> for QueuingStrategy

Sourceยง

impl AsRef<Object> for ReadableByteStreamController

Sourceยง

impl AsRef<Object> for ReadableStream

Sourceยง

impl AsRef<Object> for ReadableStreamByobReader

Sourceยง

impl AsRef<Object> for ReadableStreamByobRequest

Sourceยง

impl AsRef<Object> for ReadableStreamDefaultController

Sourceยง

impl AsRef<Object> for ReadableStreamDefaultReader

Sourceยง

impl AsRef<Object> for ReadableStreamGetReaderOptions

Sourceยง

impl AsRef<Object> for ReadableStreamReadResult

Sourceยง

impl AsRef<Object> for ReadableWritablePair

Sourceยง

impl AsRef<Object> for Request

Sourceยง

impl AsRef<Object> for RequestInit

Sourceยง

impl AsRef<Object> for Response

Sourceยง

impl AsRef<Object> for ResponseInit

Sourceยง

impl AsRef<Object> for ScrollIntoViewOptions

Sourceยง

impl AsRef<Object> for ScrollToOptions

Sourceยง

impl AsRef<Object> for SecurityPolicyViolationEvent

Sourceยง

impl AsRef<Object> for ShadowRoot

Sourceยง

impl AsRef<Object> for ShadowRootInit

Sourceยง

impl AsRef<Object> for Storage

Sourceยง

impl AsRef<Object> for StorageEvent

Sourceยง

impl AsRef<Object> for StreamPipeOptions

Sourceยง

impl AsRef<Object> for SubmitEvent

Sourceยง

impl AsRef<Object> for SvgElement

Sourceยง

impl AsRef<Object> for Text

Sourceยง

impl AsRef<Object> for TouchEvent

Sourceยง

impl AsRef<Object> for TransformStream

Sourceยง

impl AsRef<Object> for TransformStreamDefaultController

Sourceยง

impl AsRef<Object> for Transformer

Sourceยง

impl AsRef<Object> for TransitionEvent

Sourceยง

impl AsRef<Object> for TreeWalker

Sourceยง

impl AsRef<Object> for UiEvent

Sourceยง

impl AsRef<Object> for UnderlyingSink

Sourceยง

impl AsRef<Object> for UnderlyingSource

Sourceยง

impl AsRef<Object> for web_sys::features::gen_Url::Url

Sourceยง

impl AsRef<Object> for UrlSearchParams

Sourceยง

impl AsRef<Object> for WebSocket

Sourceยง

impl AsRef<Object> for WheelEvent

Sourceยง

impl AsRef<Object> for web_sys::features::gen_Window::Window

Sourceยง

impl AsRef<Object> for WritableStream

Sourceยง

impl AsRef<Object> for WritableStreamDefaultController

Sourceยง

impl AsRef<Object> for WritableStreamDefaultWriter

Sourceยง

impl AsRef<Promise> for Promise

Sourceยง

impl AsRef<Proxy> for Proxy

Sourceยง

impl AsRef<RangeError> for RangeError

Sourceยง

impl AsRef<ReferenceError> for ReferenceError

Sourceยง

impl AsRef<RegExp> for RegExp

Sourceยง

impl AsRef<Set> for Set

Sourceยง

impl AsRef<SharedArrayBuffer> for SharedArrayBuffer

Sourceยง

impl AsRef<Symbol> for Symbol

Sourceยง

impl AsRef<SyntaxError> for SyntaxError

Sourceยง

impl AsRef<TypeError> for TypeError

Sourceยง

impl AsRef<Uint8Array> for Uint8Array

Sourceยง

impl AsRef<Uint8ClampedArray> for Uint8ClampedArray

Sourceยง

impl AsRef<Uint16Array> for Uint16Array

Sourceยง

impl AsRef<Uint32Array> for Uint32Array

Sourceยง

impl AsRef<UriError> for UriError

Sourceยง

impl AsRef<WeakMap> for WeakMap

Sourceยง

impl AsRef<WeakSet> for WeakSet

Sourceยง

impl AsRef<Asn1BitStringRef> for Asn1BitString

Sourceยง

impl AsRef<Asn1EnumeratedRef> for Asn1Enumerated

Sourceยง

impl AsRef<Asn1GeneralizedTimeRef> for Asn1GeneralizedTime

Sourceยง

impl AsRef<Asn1IntegerRef> for Asn1Integer

Sourceยง

impl AsRef<Asn1ObjectRef> for Asn1Object

Sourceยง

impl AsRef<Asn1OctetStringRef> for Asn1OctetString

Sourceยง

impl AsRef<Asn1StringRef> for Asn1String

Sourceยง

impl AsRef<Asn1TimeRef> for Asn1Time

Sourceยง

impl AsRef<BigNumContextRef> for BigNumContext

Sourceยง

impl AsRef<BigNumRef> for BigNum

Sourceยง

impl AsRef<CipherCtxRef> for CipherCtx

Sourceยง

impl AsRef<CmsContentInfoRef> for CmsContentInfo

Sourceยง

impl AsRef<ConfRef> for Conf

Sourceยง

impl AsRef<DsaSigRef> for DsaSig

Sourceยง

impl AsRef<EcGroupRef> for EcGroup

Sourceยง

impl AsRef<EcPointRef> for EcPoint

Sourceยง

impl AsRef<EcdsaSigRef> for EcdsaSig

Sourceยง

impl AsRef<LibCtxRef> for LibCtx

Sourceยง

impl AsRef<MdCtxRef> for MdCtx

Sourceยง

impl AsRef<OcspBasicResponseRef> for OcspBasicResponse

Sourceยง

impl AsRef<OcspCertIdRef> for OcspCertId

Sourceยง

impl AsRef<OcspOneReqRef> for OcspOneReq

Sourceยง

impl AsRef<OcspRequestRef> for OcspRequest

Sourceยง

impl AsRef<OcspResponseRef> for OcspResponse

Sourceยง

impl AsRef<Pkcs7Ref> for Pkcs7

Sourceยง

impl AsRef<Pkcs7SignedRef> for Pkcs7Signed

Sourceยง

impl AsRef<Pkcs7SignerInfoRef> for Pkcs7SignerInfo

Sourceยง

impl AsRef<Pkcs12Ref> for Pkcs12

Sourceยง

impl AsRef<ProviderRef> for Provider

Sourceยง

impl AsRef<SrtpProtectionProfileRef> for SrtpProtectionProfile

Sourceยง

impl AsRef<SslContextRef> for SslContext

Sourceยง

impl AsRef<SslRef> for Ssl

Sourceยง

impl AsRef<SslSessionRef> for SslSession

Sourceยง

impl AsRef<OpensslStringRef> for OpensslString

Sourceยง

impl AsRef<X509StoreBuilderRef> for X509StoreBuilder

Sourceยง

impl AsRef<X509StoreRef> for X509Store

Sourceยง

impl AsRef<AccessDescriptionRef> for AccessDescription

Sourceยง

impl AsRef<DistPointNameRef> for DistPointName

Sourceยง

impl AsRef<DistPointRef> for DistPoint

Sourceยง

impl AsRef<GeneralNameRef> for GeneralName

Sourceยง

impl AsRef<X509AlgorithmRef> for X509Algorithm

Sourceยง

impl AsRef<X509CrlRef> for X509Crl

Sourceยง

impl AsRef<X509ExtensionRef> for X509Extension

Sourceยง

impl AsRef<X509NameEntryRef> for X509NameEntry

Sourceยง

impl AsRef<X509NameRef> for X509Name

Sourceยง

impl AsRef<X509ObjectRef> for X509Object

Sourceยง

impl AsRef<X509Ref> for X509

Sourceยง

impl AsRef<X509Ref> for X509Ref

Sourceยง

impl AsRef<X509ReqRef> for X509Req

Sourceยง

impl AsRef<X509RevokedRef> for X509Revoked

Sourceยง

impl AsRef<X509StoreContextRef> for X509StoreContext

Sourceยง

impl AsRef<X509VerifyParamRef> for X509VerifyParam

Sourceยง

impl AsRef<Uuid> for Braced

Sourceยง

impl AsRef<Uuid> for Hyphenated

Sourceยง

impl AsRef<Uuid> for Simple

Sourceยง

impl AsRef<Uuid> for Urn

Sourceยง

impl AsRef<Uuid> for Uuid

Sourceยง

impl AsRef<JsValue> for Collator

Sourceยง

impl AsRef<JsValue> for DateTimeFormat

Sourceยง

impl AsRef<JsValue> for NumberFormat

Sourceยง

impl AsRef<JsValue> for PluralRules

Sourceยง

impl AsRef<JsValue> for RelativeTimeFormat

Sourceยง

impl AsRef<JsValue> for CompileError

Sourceยง

impl AsRef<JsValue> for Exception

Sourceยง

impl AsRef<JsValue> for Global

Sourceยง

impl AsRef<JsValue> for Instance

Sourceยง

impl AsRef<JsValue> for LinkError

Sourceยง

impl AsRef<JsValue> for Memory

Sourceยง

impl AsRef<JsValue> for Module

Sourceยง

impl AsRef<JsValue> for RuntimeError

Sourceยง

impl AsRef<JsValue> for Table

Sourceยง

impl AsRef<JsValue> for js_sys::WebAssembly::Tag

Sourceยง

impl AsRef<JsValue> for Array

Sourceยง

impl AsRef<JsValue> for ArrayBuffer

Sourceยง

impl AsRef<JsValue> for AsyncIterator

Sourceยง

impl AsRef<JsValue> for BigInt64Array

Sourceยง

impl AsRef<JsValue> for BigInt

Sourceยง

impl AsRef<JsValue> for BigUint64Array

Sourceยง

impl AsRef<JsValue> for Boolean

Sourceยง

impl AsRef<JsValue> for DataView

Sourceยง

impl AsRef<JsValue> for Date

Sourceยง

impl AsRef<JsValue> for js_sys::Error

Sourceยง

impl AsRef<JsValue> for EvalError

Sourceยง

impl AsRef<JsValue> for Float32Array

Sourceยง

impl AsRef<JsValue> for Float64Array

Sourceยง

impl AsRef<JsValue> for Function

Sourceยง

impl AsRef<JsValue> for Generator

Sourceยง

impl AsRef<JsValue> for Int8Array

Sourceยง

impl AsRef<JsValue> for Int16Array

Sourceยง

impl AsRef<JsValue> for Int32Array

Sourceยง

impl AsRef<JsValue> for Iterator

Sourceยง

impl AsRef<JsValue> for IteratorNext

Sourceยง

impl AsRef<JsValue> for JsString

Sourceยง

impl AsRef<JsValue> for js_sys::Map

Sourceยง

impl AsRef<JsValue> for Number

Sourceยง

impl AsRef<JsValue> for Object

Sourceยง

impl AsRef<JsValue> for Promise

Sourceยง

impl AsRef<JsValue> for Proxy

Sourceยง

impl AsRef<JsValue> for RangeError

Sourceยง

impl AsRef<JsValue> for ReferenceError

Sourceยง

impl AsRef<JsValue> for RegExp

Sourceยง

impl AsRef<JsValue> for Set

Sourceยง

impl AsRef<JsValue> for SharedArrayBuffer

Sourceยง

impl AsRef<JsValue> for Symbol

Sourceยง

impl AsRef<JsValue> for SyntaxError

Sourceยง

impl AsRef<JsValue> for TypeError

Sourceยง

impl AsRef<JsValue> for Uint8Array

Sourceยง

impl AsRef<JsValue> for Uint8ClampedArray

Sourceยง

impl AsRef<JsValue> for Uint16Array

Sourceยง

impl AsRef<JsValue> for Uint32Array

Sourceยง

impl AsRef<JsValue> for UriError

Sourceยง

impl AsRef<JsValue> for WeakMap

Sourceยง

impl AsRef<JsValue> for WeakSet

Sourceยง

impl AsRef<JsValue> for JsValue

Sourceยง

impl AsRef<JsValue> for AbortController

Sourceยง

impl AsRef<JsValue> for AbortSignal

Sourceยง

impl AsRef<JsValue> for AddEventListenerOptions

Sourceยง

impl AsRef<JsValue> for AnimationEvent

Sourceยง

impl AsRef<JsValue> for BeforeUnloadEvent

Sourceยง

impl AsRef<JsValue> for Blob

Sourceยง

impl AsRef<JsValue> for CharacterData

Sourceยง

impl AsRef<JsValue> for ClipboardEvent

Sourceยง

impl AsRef<JsValue> for CloseEvent

Sourceยง

impl AsRef<JsValue> for CloseEventInit

Sourceยง

impl AsRef<JsValue> for Comment

Sourceยง

impl AsRef<JsValue> for CompositionEvent

Sourceยง

impl AsRef<JsValue> for CssStyleDeclaration

Sourceยง

impl AsRef<JsValue> for CustomEvent

Sourceยง

impl AsRef<JsValue> for DataTransfer

Sourceยง

impl AsRef<JsValue> for DeviceMotionEvent

Sourceยง

impl AsRef<JsValue> for DeviceOrientationEvent

Sourceยง

impl AsRef<JsValue> for web_sys::features::gen_Document::Document

Sourceยง

impl AsRef<JsValue> for DocumentFragment

Sourceยง

impl AsRef<JsValue> for DomRect

Sourceยง

impl AsRef<JsValue> for DomRectReadOnly

Sourceยง

impl AsRef<JsValue> for DomStringMap

Sourceยง

impl AsRef<JsValue> for DomTokenList

Sourceยง

impl AsRef<JsValue> for DragEvent

Sourceยง

impl AsRef<JsValue> for Element

Sourceยง

impl AsRef<JsValue> for ErrorEvent

Sourceยง

impl AsRef<JsValue> for web_sys::features::gen_Event::Event

Sourceยง

impl AsRef<JsValue> for EventSource

Sourceยง

impl AsRef<JsValue> for EventTarget

Sourceยง

impl AsRef<JsValue> for File

Sourceยง

impl AsRef<JsValue> for FileList

Sourceยง

impl AsRef<JsValue> for FileReader

Sourceยง

impl AsRef<JsValue> for FocusEvent

Sourceยง

impl AsRef<JsValue> for FormData

Sourceยง

impl AsRef<JsValue> for GamepadEvent

Sourceยง

impl AsRef<JsValue> for HashChangeEvent

Sourceยง

impl AsRef<JsValue> for Headers

Sourceยง

impl AsRef<JsValue> for History

Sourceยง

impl AsRef<JsValue> for HtmlAnchorElement

Sourceยง

impl AsRef<JsValue> for HtmlAreaElement

Sourceยง

impl AsRef<JsValue> for HtmlAudioElement

Sourceยง

impl AsRef<JsValue> for HtmlBaseElement

Sourceยง

impl AsRef<JsValue> for HtmlBodyElement

Sourceยง

impl AsRef<JsValue> for HtmlBrElement

Sourceยง

impl AsRef<JsValue> for HtmlButtonElement

Sourceยง

impl AsRef<JsValue> for HtmlCanvasElement

Sourceยง

impl AsRef<JsValue> for HtmlCollection

Sourceยง

impl AsRef<JsValue> for HtmlDListElement

Sourceยง

impl AsRef<JsValue> for HtmlDataElement

Sourceยง

impl AsRef<JsValue> for HtmlDataListElement

Sourceยง

impl AsRef<JsValue> for HtmlDetailsElement

Sourceยง

impl AsRef<JsValue> for HtmlDialogElement

Sourceยง

impl AsRef<JsValue> for HtmlDivElement

Sourceยง

impl AsRef<JsValue> for HtmlElement

Sourceยง

impl AsRef<JsValue> for HtmlEmbedElement

Sourceยง

impl AsRef<JsValue> for HtmlFieldSetElement

Sourceยง

impl AsRef<JsValue> for HtmlFormElement

Sourceยง

impl AsRef<JsValue> for HtmlHeadElement

Sourceยง

impl AsRef<JsValue> for HtmlHeadingElement

Sourceยง

impl AsRef<JsValue> for HtmlHrElement

Sourceยง

impl AsRef<JsValue> for HtmlHtmlElement

Sourceยง

impl AsRef<JsValue> for HtmlIFrameElement

Sourceยง

impl AsRef<JsValue> for HtmlImageElement

Sourceยง

impl AsRef<JsValue> for HtmlInputElement

Sourceยง

impl AsRef<JsValue> for HtmlLabelElement

Sourceยง

impl AsRef<JsValue> for HtmlLegendElement

Sourceยง

impl AsRef<JsValue> for HtmlLiElement

Sourceยง

impl AsRef<JsValue> for HtmlLinkElement

Sourceยง

impl AsRef<JsValue> for HtmlMapElement

Sourceยง

impl AsRef<JsValue> for HtmlMediaElement

Sourceยง

impl AsRef<JsValue> for HtmlMenuElement

Sourceยง

impl AsRef<JsValue> for HtmlMetaElement

Sourceยง

impl AsRef<JsValue> for HtmlMeterElement

Sourceยง

impl AsRef<JsValue> for HtmlModElement

Sourceยง

impl AsRef<JsValue> for HtmlOListElement

Sourceยง

impl AsRef<JsValue> for HtmlObjectElement

Sourceยง

impl AsRef<JsValue> for HtmlOptGroupElement

Sourceยง

impl AsRef<JsValue> for HtmlOptionElement

Sourceยง

impl AsRef<JsValue> for HtmlOutputElement

Sourceยง

impl AsRef<JsValue> for HtmlParagraphElement

Sourceยง

impl AsRef<JsValue> for HtmlParamElement

Sourceยง

impl AsRef<JsValue> for HtmlPictureElement

Sourceยง

impl AsRef<JsValue> for HtmlPreElement

Sourceยง

impl AsRef<JsValue> for HtmlProgressElement

Sourceยง

impl AsRef<JsValue> for HtmlQuoteElement

Sourceยง

impl AsRef<JsValue> for HtmlScriptElement

Sourceยง

impl AsRef<JsValue> for HtmlSelectElement

Sourceยง

impl AsRef<JsValue> for HtmlSlotElement

Sourceยง

impl AsRef<JsValue> for HtmlSourceElement

Sourceยง

impl AsRef<JsValue> for HtmlSpanElement

Sourceยง

impl AsRef<JsValue> for HtmlStyleElement

Sourceยง

impl AsRef<JsValue> for HtmlTableCaptionElement

Sourceยง

impl AsRef<JsValue> for HtmlTableCellElement

Sourceยง

impl AsRef<JsValue> for HtmlTableColElement

Sourceยง

impl AsRef<JsValue> for HtmlTableElement

Sourceยง

impl AsRef<JsValue> for HtmlTableRowElement

Sourceยง

impl AsRef<JsValue> for HtmlTableSectionElement

Sourceยง

impl AsRef<JsValue> for HtmlTemplateElement

Sourceยง

impl AsRef<JsValue> for HtmlTextAreaElement

Sourceยง

impl AsRef<JsValue> for HtmlTimeElement

Sourceยง

impl AsRef<JsValue> for HtmlTitleElement

Sourceยง

impl AsRef<JsValue> for HtmlTrackElement

Sourceยง

impl AsRef<JsValue> for HtmlUListElement

Sourceยง

impl AsRef<JsValue> for HtmlVideoElement

Sourceยง

impl AsRef<JsValue> for InputEvent

Sourceยง

impl AsRef<JsValue> for KeyboardEvent

Sourceยง

impl AsRef<JsValue> for Location

Sourceยง

impl AsRef<JsValue> for MessageEvent

Sourceยง

impl AsRef<JsValue> for MouseEvent

Sourceยง

impl AsRef<JsValue> for MutationObserver

Sourceยง

impl AsRef<JsValue> for MutationObserverInit

Sourceยง

impl AsRef<JsValue> for MutationRecord

Sourceยง

impl AsRef<JsValue> for Node

Sourceยง

impl AsRef<JsValue> for NodeFilter

Sourceยง

impl AsRef<JsValue> for NodeList

Sourceยง

impl AsRef<JsValue> for ObserverCallback

Sourceยง

impl AsRef<JsValue> for PageTransitionEvent

Sourceยง

impl AsRef<JsValue> for PointerEvent

Sourceยง

impl AsRef<JsValue> for PopStateEvent

Sourceยง

impl AsRef<JsValue> for ProgressEvent

Sourceยง

impl AsRef<JsValue> for PromiseRejectionEvent

Sourceยง

impl AsRef<JsValue> for QueuingStrategy

Sourceยง

impl AsRef<JsValue> for ReadableByteStreamController

Sourceยง

impl AsRef<JsValue> for ReadableStream

Sourceยง

impl AsRef<JsValue> for ReadableStreamByobReader

Sourceยง

impl AsRef<JsValue> for ReadableStreamByobRequest

Sourceยง

impl AsRef<JsValue> for ReadableStreamDefaultController

Sourceยง

impl AsRef<JsValue> for ReadableStreamDefaultReader

Sourceยง

impl AsRef<JsValue> for ReadableStreamGetReaderOptions

Sourceยง

impl AsRef<JsValue> for ReadableStreamReadResult

Sourceยง

impl AsRef<JsValue> for ReadableWritablePair

Sourceยง

impl AsRef<JsValue> for Request

Sourceยง

impl AsRef<JsValue> for RequestInit

Sourceยง

impl AsRef<JsValue> for Response

Sourceยง

impl AsRef<JsValue> for ResponseInit

Sourceยง

impl AsRef<JsValue> for ScrollIntoViewOptions

Sourceยง

impl AsRef<JsValue> for ScrollToOptions

Sourceยง

impl AsRef<JsValue> for SecurityPolicyViolationEvent

Sourceยง

impl AsRef<JsValue> for ShadowRoot

Sourceยง

impl AsRef<JsValue> for ShadowRootInit

Sourceยง

impl AsRef<JsValue> for Storage

Sourceยง

impl AsRef<JsValue> for StorageEvent

Sourceยง

impl AsRef<JsValue> for StreamPipeOptions

Sourceยง

impl AsRef<JsValue> for SubmitEvent

Sourceยง

impl AsRef<JsValue> for SvgElement

Sourceยง

impl AsRef<JsValue> for Text

Sourceยง

impl AsRef<JsValue> for TouchEvent

Sourceยง

impl AsRef<JsValue> for TransformStream

Sourceยง

impl AsRef<JsValue> for TransformStreamDefaultController

Sourceยง

impl AsRef<JsValue> for Transformer

Sourceยง

impl AsRef<JsValue> for TransitionEvent

Sourceยง

impl AsRef<JsValue> for TreeWalker

Sourceยง

impl AsRef<JsValue> for UiEvent

Sourceยง

impl AsRef<JsValue> for UnderlyingSink

Sourceยง

impl AsRef<JsValue> for UnderlyingSource

Sourceยง

impl AsRef<JsValue> for web_sys::features::gen_Url::Url

Sourceยง

impl AsRef<JsValue> for UrlSearchParams

Sourceยง

impl AsRef<JsValue> for WebSocket

Sourceยง

impl AsRef<JsValue> for WheelEvent

Sourceยง

impl AsRef<JsValue> for web_sys::features::gen_Window::Window

Sourceยง

impl AsRef<JsValue> for WritableStream

Sourceยง

impl AsRef<JsValue> for WritableStreamDefaultController

Sourceยง

impl AsRef<JsValue> for WritableStreamDefaultWriter

Sourceยง

impl AsRef<AbortController> for AbortController

Sourceยง

impl AsRef<AbortSignal> for AbortSignal

Sourceยง

impl AsRef<AddEventListenerOptions> for AddEventListenerOptions

Sourceยง

impl AsRef<AnimationEvent> for AnimationEvent

Sourceยง

impl AsRef<BeforeUnloadEvent> for BeforeUnloadEvent

Sourceยง

impl AsRef<Blob> for Blob

Sourceยง

impl AsRef<Blob> for File

Sourceยง

impl AsRef<CharacterData> for CharacterData

Sourceยง

impl AsRef<CharacterData> for Comment

Sourceยง

impl AsRef<CharacterData> for Text

Sourceยง

impl AsRef<ClipboardEvent> for ClipboardEvent

Sourceยง

impl AsRef<CloseEvent> for CloseEvent

Sourceยง

impl AsRef<CloseEventInit> for CloseEventInit

Sourceยง

impl AsRef<Comment> for Comment

Sourceยง

impl AsRef<CompositionEvent> for CompositionEvent

Sourceยง

impl AsRef<CssStyleDeclaration> for CssStyleDeclaration

Sourceยง

impl AsRef<CustomEvent> for CustomEvent

Sourceยง

impl AsRef<DataTransfer> for DataTransfer

Sourceยง

impl AsRef<DeviceMotionEvent> for DeviceMotionEvent

Sourceยง

impl AsRef<DeviceOrientationEvent> for DeviceOrientationEvent

Sourceยง

impl AsRef<Document> for web_sys::features::gen_Document::Document

Sourceยง

impl AsRef<DocumentFragment> for DocumentFragment

Sourceยง

impl AsRef<DocumentFragment> for ShadowRoot

Sourceยง

impl AsRef<DomRect> for DomRect

Sourceยง

impl AsRef<DomRectReadOnly> for DomRect

Sourceยง

impl AsRef<DomRectReadOnly> for DomRectReadOnly

Sourceยง

impl AsRef<DomStringMap> for DomStringMap

Sourceยง

impl AsRef<DomTokenList> for DomTokenList

Sourceยง

impl AsRef<DragEvent> for DragEvent

Sourceยง

impl AsRef<Element> for Element

Sourceยง

impl AsRef<Element> for HtmlAnchorElement

Sourceยง

impl AsRef<Element> for HtmlAreaElement

Sourceยง

impl AsRef<Element> for HtmlAudioElement

Sourceยง

impl AsRef<Element> for HtmlBaseElement

Sourceยง

impl AsRef<Element> for HtmlBodyElement

Sourceยง

impl AsRef<Element> for HtmlBrElement

Sourceยง

impl AsRef<Element> for HtmlButtonElement

Sourceยง

impl AsRef<Element> for HtmlCanvasElement

Sourceยง

impl AsRef<Element> for HtmlDListElement

Sourceยง

impl AsRef<Element> for HtmlDataElement

Sourceยง

impl AsRef<Element> for HtmlDataListElement

Sourceยง

impl AsRef<Element> for HtmlDetailsElement

Sourceยง

impl AsRef<Element> for HtmlDialogElement

Sourceยง

impl AsRef<Element> for HtmlDivElement

Sourceยง

impl AsRef<Element> for HtmlElement

Sourceยง

impl AsRef<Element> for HtmlEmbedElement

Sourceยง

impl AsRef<Element> for HtmlFieldSetElement

Sourceยง

impl AsRef<Element> for HtmlFormElement

Sourceยง

impl AsRef<Element> for HtmlHeadElement

Sourceยง

impl AsRef<Element> for HtmlHeadingElement

Sourceยง

impl AsRef<Element> for HtmlHrElement

Sourceยง

impl AsRef<Element> for HtmlHtmlElement

Sourceยง

impl AsRef<Element> for HtmlIFrameElement

Sourceยง

impl AsRef<Element> for HtmlImageElement

Sourceยง

impl AsRef<Element> for HtmlInputElement

Sourceยง

impl AsRef<Element> for HtmlLabelElement

Sourceยง

impl AsRef<Element> for HtmlLegendElement

Sourceยง

impl AsRef<Element> for HtmlLiElement

Sourceยง

impl AsRef<Element> for HtmlLinkElement

Sourceยง

impl AsRef<Element> for HtmlMapElement

Sourceยง

impl AsRef<Element> for HtmlMediaElement

Sourceยง

impl AsRef<Element> for HtmlMenuElement

Sourceยง

impl AsRef<Element> for HtmlMetaElement

Sourceยง

impl AsRef<Element> for HtmlMeterElement

Sourceยง

impl AsRef<Element> for HtmlModElement

Sourceยง

impl AsRef<Element> for HtmlOListElement

Sourceยง

impl AsRef<Element> for HtmlObjectElement

Sourceยง

impl AsRef<Element> for HtmlOptGroupElement

Sourceยง

impl AsRef<Element> for HtmlOptionElement

Sourceยง

impl AsRef<Element> for HtmlOutputElement

Sourceยง

impl AsRef<Element> for HtmlParagraphElement

Sourceยง

impl AsRef<Element> for HtmlParamElement

Sourceยง

impl AsRef<Element> for HtmlPictureElement

Sourceยง

impl AsRef<Element> for HtmlPreElement

Sourceยง

impl AsRef<Element> for HtmlProgressElement

Sourceยง

impl AsRef<Element> for HtmlQuoteElement

Sourceยง

impl AsRef<Element> for HtmlScriptElement

Sourceยง

impl AsRef<Element> for HtmlSelectElement

Sourceยง

impl AsRef<Element> for HtmlSlotElement

Sourceยง

impl AsRef<Element> for HtmlSourceElement

Sourceยง

impl AsRef<Element> for HtmlSpanElement

Sourceยง

impl AsRef<Element> for HtmlStyleElement

Sourceยง

impl AsRef<Element> for HtmlTableCaptionElement

Sourceยง

impl AsRef<Element> for HtmlTableCellElement

Sourceยง

impl AsRef<Element> for HtmlTableColElement

Sourceยง

impl AsRef<Element> for HtmlTableElement

Sourceยง

impl AsRef<Element> for HtmlTableRowElement

Sourceยง

impl AsRef<Element> for HtmlTableSectionElement

Sourceยง

impl AsRef<Element> for HtmlTemplateElement

Sourceยง

impl AsRef<Element> for HtmlTextAreaElement

Sourceยง

impl AsRef<Element> for HtmlTimeElement

Sourceยง

impl AsRef<Element> for HtmlTitleElement

Sourceยง

impl AsRef<Element> for HtmlTrackElement

Sourceยง

impl AsRef<Element> for HtmlUListElement

Sourceยง

impl AsRef<Element> for HtmlVideoElement

Sourceยง

impl AsRef<Element> for SvgElement

Sourceยง

impl AsRef<ErrorEvent> for ErrorEvent

Sourceยง

impl AsRef<Event> for AnimationEvent

Sourceยง

impl AsRef<Event> for BeforeUnloadEvent

Sourceยง

impl AsRef<Event> for ClipboardEvent

Sourceยง

impl AsRef<Event> for CloseEvent

Sourceยง

impl AsRef<Event> for CompositionEvent

Sourceยง

impl AsRef<Event> for CustomEvent

Sourceยง

impl AsRef<Event> for DeviceMotionEvent

Sourceยง

impl AsRef<Event> for DeviceOrientationEvent

Sourceยง

impl AsRef<Event> for DragEvent

Sourceยง

impl AsRef<Event> for ErrorEvent

Sourceยง

impl AsRef<Event> for web_sys::features::gen_Event::Event

Sourceยง

impl AsRef<Event> for FocusEvent

Sourceยง

impl AsRef<Event> for GamepadEvent

Sourceยง

impl AsRef<Event> for HashChangeEvent

Sourceยง

impl AsRef<Event> for InputEvent

Sourceยง

impl AsRef<Event> for KeyboardEvent

Sourceยง

impl AsRef<Event> for MessageEvent

Sourceยง

impl AsRef<Event> for MouseEvent

Sourceยง

impl AsRef<Event> for PageTransitionEvent

Sourceยง

impl AsRef<Event> for PointerEvent

Sourceยง

impl AsRef<Event> for PopStateEvent

Sourceยง

impl AsRef<Event> for ProgressEvent

Sourceยง

impl AsRef<Event> for PromiseRejectionEvent

Sourceยง

impl AsRef<Event> for SecurityPolicyViolationEvent

Sourceยง

impl AsRef<Event> for StorageEvent

Sourceยง

impl AsRef<Event> for SubmitEvent

Sourceยง

impl AsRef<Event> for TouchEvent

Sourceยง

impl AsRef<Event> for TransitionEvent

Sourceยง

impl AsRef<Event> for UiEvent

Sourceยง

impl AsRef<Event> for WheelEvent

Sourceยง

impl AsRef<EventSource> for EventSource

Sourceยง

impl AsRef<EventTarget> for AbortSignal

Sourceยง

impl AsRef<EventTarget> for CharacterData

Sourceยง

impl AsRef<EventTarget> for Comment

Sourceยง

impl AsRef<EventTarget> for web_sys::features::gen_Document::Document

Sourceยง

impl AsRef<EventTarget> for DocumentFragment

Sourceยง

impl AsRef<EventTarget> for Element

Sourceยง

impl AsRef<EventTarget> for EventSource

Sourceยง

impl AsRef<EventTarget> for EventTarget

Sourceยง

impl AsRef<EventTarget> for FileReader

Sourceยง

impl AsRef<EventTarget> for HtmlAnchorElement

Sourceยง

impl AsRef<EventTarget> for HtmlAreaElement

Sourceยง

impl AsRef<EventTarget> for HtmlAudioElement

Sourceยง

impl AsRef<EventTarget> for HtmlBaseElement

Sourceยง

impl AsRef<EventTarget> for HtmlBodyElement

Sourceยง

impl AsRef<EventTarget> for HtmlBrElement

Sourceยง

impl AsRef<EventTarget> for HtmlButtonElement

Sourceยง

impl AsRef<EventTarget> for HtmlCanvasElement

Sourceยง

impl AsRef<EventTarget> for HtmlDListElement

Sourceยง

impl AsRef<EventTarget> for HtmlDataElement

Sourceยง

impl AsRef<EventTarget> for HtmlDataListElement

Sourceยง

impl AsRef<EventTarget> for HtmlDetailsElement

Sourceยง

impl AsRef<EventTarget> for HtmlDialogElement

Sourceยง

impl AsRef<EventTarget> for HtmlDivElement

Sourceยง

impl AsRef<EventTarget> for HtmlElement

Sourceยง

impl AsRef<EventTarget> for HtmlEmbedElement

Sourceยง

impl AsRef<EventTarget> for HtmlFieldSetElement

Sourceยง

impl AsRef<EventTarget> for HtmlFormElement

Sourceยง

impl AsRef<EventTarget> for HtmlHeadElement

Sourceยง

impl AsRef<EventTarget> for HtmlHeadingElement

Sourceยง

impl AsRef<EventTarget> for HtmlHrElement

Sourceยง

impl AsRef<EventTarget> for HtmlHtmlElement

Sourceยง

impl AsRef<EventTarget> for HtmlIFrameElement

Sourceยง

impl AsRef<EventTarget> for HtmlImageElement

Sourceยง

impl AsRef<EventTarget> for HtmlInputElement

Sourceยง

impl AsRef<EventTarget> for HtmlLabelElement

Sourceยง

impl AsRef<EventTarget> for HtmlLegendElement

Sourceยง

impl AsRef<EventTarget> for HtmlLiElement

Sourceยง

impl AsRef<EventTarget> for HtmlLinkElement

Sourceยง

impl AsRef<EventTarget> for HtmlMapElement

Sourceยง

impl AsRef<EventTarget> for HtmlMediaElement

Sourceยง

impl AsRef<EventTarget> for HtmlMenuElement

Sourceยง

impl AsRef<EventTarget> for HtmlMetaElement

Sourceยง

impl AsRef<EventTarget> for HtmlMeterElement

Sourceยง

impl AsRef<EventTarget> for HtmlModElement

Sourceยง

impl AsRef<EventTarget> for HtmlOListElement

Sourceยง

impl AsRef<EventTarget> for HtmlObjectElement

Sourceยง

impl AsRef<EventTarget> for HtmlOptGroupElement

Sourceยง

impl AsRef<EventTarget> for HtmlOptionElement

Sourceยง

impl AsRef<EventTarget> for HtmlOutputElement

Sourceยง

impl AsRef<EventTarget> for HtmlParagraphElement

Sourceยง

impl AsRef<EventTarget> for HtmlParamElement

Sourceยง

impl AsRef<EventTarget> for HtmlPictureElement

Sourceยง

impl AsRef<EventTarget> for HtmlPreElement

Sourceยง

impl AsRef<EventTarget> for HtmlProgressElement

Sourceยง

impl AsRef<EventTarget> for HtmlQuoteElement

Sourceยง

impl AsRef<EventTarget> for HtmlScriptElement

Sourceยง

impl AsRef<EventTarget> for HtmlSelectElement

Sourceยง

impl AsRef<EventTarget> for HtmlSlotElement

Sourceยง

impl AsRef<EventTarget> for HtmlSourceElement

Sourceยง

impl AsRef<EventTarget> for HtmlSpanElement

Sourceยง

impl AsRef<EventTarget> for HtmlStyleElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableCaptionElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableCellElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableColElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableRowElement

Sourceยง

impl AsRef<EventTarget> for HtmlTableSectionElement

Sourceยง

impl AsRef<EventTarget> for HtmlTemplateElement

Sourceยง

impl AsRef<EventTarget> for HtmlTextAreaElement

Sourceยง

impl AsRef<EventTarget> for HtmlTimeElement

Sourceยง

impl AsRef<EventTarget> for HtmlTitleElement

Sourceยง

impl AsRef<EventTarget> for HtmlTrackElement

Sourceยง

impl AsRef<EventTarget> for HtmlUListElement

Sourceยง

impl AsRef<EventTarget> for HtmlVideoElement

Sourceยง

impl AsRef<EventTarget> for Node

Sourceยง

impl AsRef<EventTarget> for ShadowRoot

Sourceยง

impl AsRef<EventTarget> for SvgElement

Sourceยง

impl AsRef<EventTarget> for Text

Sourceยง

impl AsRef<EventTarget> for WebSocket

Sourceยง

impl AsRef<EventTarget> for web_sys::features::gen_Window::Window

Sourceยง

impl AsRef<File> for File

Sourceยง

impl AsRef<FileList> for FileList

Sourceยง

impl AsRef<FileReader> for FileReader

Sourceยง

impl AsRef<FocusEvent> for FocusEvent

Sourceยง

impl AsRef<FormData> for FormData

Sourceยง

impl AsRef<GamepadEvent> for GamepadEvent

Sourceยง

impl AsRef<HashChangeEvent> for HashChangeEvent

Sourceยง

impl AsRef<Headers> for Headers

Sourceยง

impl AsRef<History> for History

Sourceยง

impl AsRef<HtmlAnchorElement> for HtmlAnchorElement

Sourceยง

impl AsRef<HtmlAreaElement> for HtmlAreaElement

Sourceยง

impl AsRef<HtmlAudioElement> for HtmlAudioElement

Sourceยง

impl AsRef<HtmlBaseElement> for HtmlBaseElement

Sourceยง

impl AsRef<HtmlBodyElement> for HtmlBodyElement

Sourceยง

impl AsRef<HtmlBrElement> for HtmlBrElement

Sourceยง

impl AsRef<HtmlButtonElement> for HtmlButtonElement

Sourceยง

impl AsRef<HtmlCanvasElement> for HtmlCanvasElement

Sourceยง

impl AsRef<HtmlCollection> for HtmlCollection

Sourceยง

impl AsRef<HtmlDListElement> for HtmlDListElement

Sourceยง

impl AsRef<HtmlDataElement> for HtmlDataElement

Sourceยง

impl AsRef<HtmlDataListElement> for HtmlDataListElement

Sourceยง

impl AsRef<HtmlDetailsElement> for HtmlDetailsElement

Sourceยง

impl AsRef<HtmlDialogElement> for HtmlDialogElement

Sourceยง

impl AsRef<HtmlDivElement> for HtmlDivElement

Sourceยง

impl AsRef<HtmlElement> for HtmlAnchorElement

Sourceยง

impl AsRef<HtmlElement> for HtmlAreaElement

Sourceยง

impl AsRef<HtmlElement> for HtmlAudioElement

Sourceยง

impl AsRef<HtmlElement> for HtmlBaseElement

Sourceยง

impl AsRef<HtmlElement> for HtmlBodyElement

Sourceยง

impl AsRef<HtmlElement> for HtmlBrElement

Sourceยง

impl AsRef<HtmlElement> for HtmlButtonElement

Sourceยง

impl AsRef<HtmlElement> for HtmlCanvasElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDListElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDataElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDataListElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDetailsElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDialogElement

Sourceยง

impl AsRef<HtmlElement> for HtmlDivElement

Sourceยง

impl AsRef<HtmlElement> for HtmlElement

Sourceยง

impl AsRef<HtmlElement> for HtmlEmbedElement

Sourceยง

impl AsRef<HtmlElement> for HtmlFieldSetElement

Sourceยง

impl AsRef<HtmlElement> for HtmlFormElement

Sourceยง

impl AsRef<HtmlElement> for HtmlHeadElement

Sourceยง

impl AsRef<HtmlElement> for HtmlHeadingElement

Sourceยง

impl AsRef<HtmlElement> for HtmlHrElement

Sourceยง

impl AsRef<HtmlElement> for HtmlHtmlElement

Sourceยง

impl AsRef<HtmlElement> for HtmlIFrameElement

Sourceยง

impl AsRef<HtmlElement> for HtmlImageElement

Sourceยง

impl AsRef<HtmlElement> for HtmlInputElement

Sourceยง

impl AsRef<HtmlElement> for HtmlLabelElement

Sourceยง

impl AsRef<HtmlElement> for HtmlLegendElement

Sourceยง

impl AsRef<HtmlElement> for HtmlLiElement

Sourceยง

impl AsRef<HtmlElement> for HtmlLinkElement

Sourceยง

impl AsRef<HtmlElement> for HtmlMapElement

Sourceยง

impl AsRef<HtmlElement> for HtmlMediaElement

Sourceยง

impl AsRef<HtmlElement> for HtmlMenuElement

Sourceยง

impl AsRef<HtmlElement> for HtmlMetaElement

Sourceยง

impl AsRef<HtmlElement> for HtmlMeterElement

Sourceยง

impl AsRef<HtmlElement> for HtmlModElement

Sourceยง

impl AsRef<HtmlElement> for HtmlOListElement

Sourceยง

impl AsRef<HtmlElement> for HtmlObjectElement

Sourceยง

impl AsRef<HtmlElement> for HtmlOptGroupElement

Sourceยง

impl AsRef<HtmlElement> for HtmlOptionElement

Sourceยง

impl AsRef<HtmlElement> for HtmlOutputElement

Sourceยง

impl AsRef<HtmlElement> for HtmlParagraphElement

Sourceยง

impl AsRef<HtmlElement> for HtmlParamElement

Sourceยง

impl AsRef<HtmlElement> for HtmlPictureElement

Sourceยง

impl AsRef<HtmlElement> for HtmlPreElement

Sourceยง

impl AsRef<HtmlElement> for HtmlProgressElement

Sourceยง

impl AsRef<HtmlElement> for HtmlQuoteElement

Sourceยง

impl AsRef<HtmlElement> for HtmlScriptElement

Sourceยง

impl AsRef<HtmlElement> for HtmlSelectElement

Sourceยง

impl AsRef<HtmlElement> for HtmlSlotElement

Sourceยง

impl AsRef<HtmlElement> for HtmlSourceElement

Sourceยง

impl AsRef<HtmlElement> for HtmlSpanElement

Sourceยง

impl AsRef<HtmlElement> for HtmlStyleElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableCaptionElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableCellElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableColElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableRowElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTableSectionElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTemplateElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTextAreaElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTimeElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTitleElement

Sourceยง

impl AsRef<HtmlElement> for HtmlTrackElement

Sourceยง

impl AsRef<HtmlElement> for HtmlUListElement

Sourceยง

impl AsRef<HtmlElement> for HtmlVideoElement

Sourceยง

impl AsRef<HtmlEmbedElement> for HtmlEmbedElement

Sourceยง

impl AsRef<HtmlFieldSetElement> for HtmlFieldSetElement

Sourceยง

impl AsRef<HtmlFormElement> for HtmlFormElement

Sourceยง

impl AsRef<HtmlHeadElement> for HtmlHeadElement

Sourceยง

impl AsRef<HtmlHeadingElement> for HtmlHeadingElement

Sourceยง

impl AsRef<HtmlHrElement> for HtmlHrElement

Sourceยง

impl AsRef<HtmlHtmlElement> for HtmlHtmlElement

Sourceยง

impl AsRef<HtmlIFrameElement> for HtmlIFrameElement

Sourceยง

impl AsRef<HtmlImageElement> for HtmlImageElement

Sourceยง

impl AsRef<HtmlInputElement> for HtmlInputElement

Sourceยง

impl AsRef<HtmlLabelElement> for HtmlLabelElement

Sourceยง

impl AsRef<HtmlLegendElement> for HtmlLegendElement

Sourceยง

impl AsRef<HtmlLiElement> for HtmlLiElement

Sourceยง

impl AsRef<HtmlLinkElement> for HtmlLinkElement

Sourceยง

impl AsRef<HtmlMapElement> for HtmlMapElement

Sourceยง

impl AsRef<HtmlMediaElement> for HtmlAudioElement

Sourceยง

impl AsRef<HtmlMediaElement> for HtmlMediaElement

Sourceยง

impl AsRef<HtmlMediaElement> for HtmlVideoElement

Sourceยง

impl AsRef<HtmlMenuElement> for HtmlMenuElement

Sourceยง

impl AsRef<HtmlMetaElement> for HtmlMetaElement

Sourceยง

impl AsRef<HtmlMeterElement> for HtmlMeterElement

Sourceยง

impl AsRef<HtmlModElement> for HtmlModElement

Sourceยง

impl AsRef<HtmlOListElement> for HtmlOListElement

Sourceยง

impl AsRef<HtmlObjectElement> for HtmlObjectElement

Sourceยง

impl AsRef<HtmlOptGroupElement> for HtmlOptGroupElement

Sourceยง

impl AsRef<HtmlOptionElement> for HtmlOptionElement

Sourceยง

impl AsRef<HtmlOutputElement> for HtmlOutputElement

Sourceยง

impl AsRef<HtmlParagraphElement> for HtmlParagraphElement

Sourceยง

impl AsRef<HtmlParamElement> for HtmlParamElement

Sourceยง

impl AsRef<HtmlPictureElement> for HtmlPictureElement

Sourceยง

impl AsRef<HtmlPreElement> for HtmlPreElement

Sourceยง

impl AsRef<HtmlProgressElement> for HtmlProgressElement

Sourceยง

impl AsRef<HtmlQuoteElement> for HtmlQuoteElement

Sourceยง

impl AsRef<HtmlScriptElement> for HtmlScriptElement

Sourceยง

impl AsRef<HtmlSelectElement> for HtmlSelectElement

Sourceยง

impl AsRef<HtmlSlotElement> for HtmlSlotElement

Sourceยง

impl AsRef<HtmlSourceElement> for HtmlSourceElement

Sourceยง

impl AsRef<HtmlSpanElement> for HtmlSpanElement

Sourceยง

impl AsRef<HtmlStyleElement> for HtmlStyleElement

Sourceยง

impl AsRef<HtmlTableCaptionElement> for HtmlTableCaptionElement

Sourceยง

impl AsRef<HtmlTableCellElement> for HtmlTableCellElement

Sourceยง

impl AsRef<HtmlTableColElement> for HtmlTableColElement

Sourceยง

impl AsRef<HtmlTableElement> for HtmlTableElement

Sourceยง

impl AsRef<HtmlTableRowElement> for HtmlTableRowElement

Sourceยง

impl AsRef<HtmlTableSectionElement> for HtmlTableSectionElement

Sourceยง

impl AsRef<HtmlTemplateElement> for HtmlTemplateElement

Sourceยง

impl AsRef<HtmlTextAreaElement> for HtmlTextAreaElement

Sourceยง

impl AsRef<HtmlTimeElement> for HtmlTimeElement

Sourceยง

impl AsRef<HtmlTitleElement> for HtmlTitleElement

Sourceยง

impl AsRef<HtmlTrackElement> for HtmlTrackElement

Sourceยง

impl AsRef<HtmlUListElement> for HtmlUListElement

Sourceยง

impl AsRef<HtmlVideoElement> for HtmlVideoElement

Sourceยง

impl AsRef<InputEvent> for InputEvent

Sourceยง

impl AsRef<KeyboardEvent> for KeyboardEvent

Sourceยง

impl AsRef<Location> for Location

Sourceยง

impl AsRef<MessageEvent> for MessageEvent

Sourceยง

impl AsRef<MouseEvent> for DragEvent

Sourceยง

impl AsRef<MouseEvent> for MouseEvent

Sourceยง

impl AsRef<MouseEvent> for PointerEvent

Sourceยง

impl AsRef<MouseEvent> for WheelEvent

Sourceยง

impl AsRef<MutationObserver> for MutationObserver

Sourceยง

impl AsRef<MutationObserverInit> for MutationObserverInit

Sourceยง

impl AsRef<MutationRecord> for MutationRecord

Sourceยง

impl AsRef<Node> for CharacterData

Sourceยง

impl AsRef<Node> for Comment

Sourceยง

impl AsRef<Node> for web_sys::features::gen_Document::Document

Sourceยง

impl AsRef<Node> for DocumentFragment

Sourceยง

impl AsRef<Node> for Element

Sourceยง

impl AsRef<Node> for HtmlAnchorElement

Sourceยง

impl AsRef<Node> for HtmlAreaElement

Sourceยง

impl AsRef<Node> for HtmlAudioElement

Sourceยง

impl AsRef<Node> for HtmlBaseElement

Sourceยง

impl AsRef<Node> for HtmlBodyElement

Sourceยง

impl AsRef<Node> for HtmlBrElement

Sourceยง

impl AsRef<Node> for HtmlButtonElement

Sourceยง

impl AsRef<Node> for HtmlCanvasElement

Sourceยง

impl AsRef<Node> for HtmlDListElement

Sourceยง

impl AsRef<Node> for HtmlDataElement

Sourceยง

impl AsRef<Node> for HtmlDataListElement

Sourceยง

impl AsRef<Node> for HtmlDetailsElement

Sourceยง

impl AsRef<Node> for HtmlDialogElement

Sourceยง

impl AsRef<Node> for HtmlDivElement

Sourceยง

impl AsRef<Node> for HtmlElement

Sourceยง

impl AsRef<Node> for HtmlEmbedElement

Sourceยง

impl AsRef<Node> for HtmlFieldSetElement

Sourceยง

impl AsRef<Node> for HtmlFormElement

Sourceยง

impl AsRef<Node> for HtmlHeadElement

Sourceยง

impl AsRef<Node> for HtmlHeadingElement

Sourceยง

impl AsRef<Node> for HtmlHrElement

Sourceยง

impl AsRef<Node> for HtmlHtmlElement

Sourceยง

impl AsRef<Node> for HtmlIFrameElement

Sourceยง

impl AsRef<Node> for HtmlImageElement

Sourceยง

impl AsRef<Node> for HtmlInputElement

Sourceยง

impl AsRef<Node> for HtmlLabelElement

Sourceยง

impl AsRef<Node> for HtmlLegendElement

Sourceยง

impl AsRef<Node> for HtmlLiElement

Sourceยง

impl AsRef<Node> for HtmlLinkElement

Sourceยง

impl AsRef<Node> for HtmlMapElement

Sourceยง

impl AsRef<Node> for HtmlMediaElement

Sourceยง

impl AsRef<Node> for HtmlMenuElement

Sourceยง

impl AsRef<Node> for HtmlMetaElement

Sourceยง

impl AsRef<Node> for HtmlMeterElement

Sourceยง

impl AsRef<Node> for HtmlModElement

Sourceยง

impl AsRef<Node> for HtmlOListElement

Sourceยง

impl AsRef<Node> for HtmlObjectElement

Sourceยง

impl AsRef<Node> for HtmlOptGroupElement

Sourceยง

impl AsRef<Node> for HtmlOptionElement

Sourceยง

impl AsRef<Node> for HtmlOutputElement

Sourceยง

impl AsRef<Node> for HtmlParagraphElement

Sourceยง

impl AsRef<Node> for HtmlParamElement

Sourceยง

impl AsRef<Node> for HtmlPictureElement

Sourceยง

impl AsRef<Node> for HtmlPreElement

Sourceยง

impl AsRef<Node> for HtmlProgressElement

Sourceยง

impl AsRef<Node> for HtmlQuoteElement

Sourceยง

impl AsRef<Node> for HtmlScriptElement

Sourceยง

impl AsRef<Node> for HtmlSelectElement

Sourceยง

impl AsRef<Node> for HtmlSlotElement

Sourceยง

impl AsRef<Node> for HtmlSourceElement

Sourceยง

impl AsRef<Node> for HtmlSpanElement

Sourceยง

impl AsRef<Node> for HtmlStyleElement

Sourceยง

impl AsRef<Node> for HtmlTableCaptionElement

Sourceยง

impl AsRef<Node> for HtmlTableCellElement

Sourceยง

impl AsRef<Node> for HtmlTableColElement

Sourceยง

impl AsRef<Node> for HtmlTableElement

Sourceยง

impl AsRef<Node> for HtmlTableRowElement

Sourceยง

impl AsRef<Node> for HtmlTableSectionElement

Sourceยง

impl AsRef<Node> for HtmlTemplateElement

Sourceยง

impl AsRef<Node> for HtmlTextAreaElement

Sourceยง

impl AsRef<Node> for HtmlTimeElement

Sourceยง

impl AsRef<Node> for HtmlTitleElement

Sourceยง

impl AsRef<Node> for HtmlTrackElement

Sourceยง

impl AsRef<Node> for HtmlUListElement

Sourceยง

impl AsRef<Node> for HtmlVideoElement

Sourceยง

impl AsRef<Node> for Node

Sourceยง

impl AsRef<Node> for ShadowRoot

Sourceยง

impl AsRef<Node> for SvgElement

Sourceยง

impl AsRef<Node> for Text

Sourceยง

impl AsRef<NodeFilter> for NodeFilter

Sourceยง

impl AsRef<NodeList> for NodeList

Sourceยง

impl AsRef<ObserverCallback> for ObserverCallback

Sourceยง

impl AsRef<PageTransitionEvent> for PageTransitionEvent

Sourceยง

impl AsRef<PointerEvent> for PointerEvent

Sourceยง

impl AsRef<PopStateEvent> for PopStateEvent

Sourceยง

impl AsRef<ProgressEvent> for ProgressEvent

Sourceยง

impl AsRef<PromiseRejectionEvent> for PromiseRejectionEvent

Sourceยง

impl AsRef<QueuingStrategy> for QueuingStrategy

Sourceยง

impl AsRef<ReadableByteStreamController> for ReadableByteStreamController

Sourceยง

impl AsRef<ReadableStream> for ReadableStream

Sourceยง

impl AsRef<ReadableStreamByobReader> for ReadableStreamByobReader

Sourceยง

impl AsRef<ReadableStreamByobRequest> for ReadableStreamByobRequest

Sourceยง

impl AsRef<ReadableStreamDefaultController> for ReadableStreamDefaultController

Sourceยง

impl AsRef<ReadableStreamDefaultReader> for ReadableStreamDefaultReader

Sourceยง

impl AsRef<ReadableStreamGetReaderOptions> for ReadableStreamGetReaderOptions

Sourceยง

impl AsRef<ReadableStreamReadResult> for ReadableStreamReadResult

Sourceยง

impl AsRef<ReadableWritablePair> for ReadableWritablePair

Sourceยง

impl AsRef<Request> for Request

Sourceยง

impl AsRef<RequestInit> for RequestInit

Sourceยง

impl AsRef<Response> for Response

Sourceยง

impl AsRef<ResponseInit> for ResponseInit

Sourceยง

impl AsRef<ScrollIntoViewOptions> for ScrollIntoViewOptions

Sourceยง

impl AsRef<ScrollToOptions> for ScrollToOptions

Sourceยง

impl AsRef<SecurityPolicyViolationEvent> for SecurityPolicyViolationEvent

Sourceยง

impl AsRef<ShadowRoot> for ShadowRoot

Sourceยง

impl AsRef<ShadowRootInit> for ShadowRootInit

Sourceยง

impl AsRef<Storage> for Storage

Sourceยง

impl AsRef<StorageEvent> for StorageEvent

Sourceยง

impl AsRef<StreamPipeOptions> for StreamPipeOptions

Sourceยง

impl AsRef<SubmitEvent> for SubmitEvent

Sourceยง

impl AsRef<SvgElement> for SvgElement

Sourceยง

impl AsRef<Text> for Text

Sourceยง

impl AsRef<TouchEvent> for TouchEvent

Sourceยง

impl AsRef<TransformStream> for TransformStream

Sourceยง

impl AsRef<TransformStreamDefaultController> for TransformStreamDefaultController

Sourceยง

impl AsRef<Transformer> for Transformer

Sourceยง

impl AsRef<TransitionEvent> for TransitionEvent

Sourceยง

impl AsRef<TreeWalker> for TreeWalker

Sourceยง

impl AsRef<UiEvent> for CompositionEvent

Sourceยง

impl AsRef<UiEvent> for DragEvent

Sourceยง

impl AsRef<UiEvent> for FocusEvent

Sourceยง

impl AsRef<UiEvent> for InputEvent

Sourceยง

impl AsRef<UiEvent> for KeyboardEvent

Sourceยง

impl AsRef<UiEvent> for MouseEvent

Sourceยง

impl AsRef<UiEvent> for PointerEvent

Sourceยง

impl AsRef<UiEvent> for TouchEvent

Sourceยง

impl AsRef<UiEvent> for UiEvent

Sourceยง

impl AsRef<UiEvent> for WheelEvent

Sourceยง

impl AsRef<UnderlyingSink> for UnderlyingSink

Sourceยง

impl AsRef<UnderlyingSource> for UnderlyingSource

Sourceยง

impl AsRef<Url> for web_sys::features::gen_Url::Url

Sourceยง

impl AsRef<UrlSearchParams> for UrlSearchParams

Sourceยง

impl AsRef<WebSocket> for WebSocket

Sourceยง

impl AsRef<WheelEvent> for WheelEvent

Sourceยง

impl AsRef<Window> for web_sys::features::gen_Window::Window

Sourceยง

impl AsRef<WritableStream> for WritableStream

Sourceยง

impl AsRef<WritableStreamDefaultController> for WritableStreamDefaultController

Sourceยง

impl AsRef<WritableStreamDefaultWriter> for WritableStreamDefaultWriter

ยง

impl AsRef<BStr> for str

ยง

impl AsRef<BStr> for str

ยง

impl AsRef<BStr> for [u8]

ยง

impl AsRef<BStr> for [u8]

ยง

impl AsRef<Bytes> for str

ยง

impl AsRef<Bytes> for str

ยง

impl AsRef<Bytes> for [u8]

ยง

impl AsRef<Bytes> for [u8]

ยง

impl AsRef<Interval> for IntervalStream

ยง

impl AsRef<OwnedValue> for OwnedValue

Sourceยง

impl AsRef<QueryResults> for QueryResult

ยง

impl AsRef<ReadDir> for ReadDirStream

ยง

impl AsRef<RiAbsoluteStr<IriSpec>> for RiAbsoluteStr<UriSpec>

ยง

impl AsRef<RiAbsoluteStr<IriSpec>> for RiAbsoluteString<UriSpec>

ยง

impl AsRef<RiFragmentStr<IriSpec>> for RiFragmentStr<UriSpec>

ยง

impl AsRef<RiFragmentStr<IriSpec>> for RiFragmentString<UriSpec>

ยง

impl AsRef<RiQueryStr<IriSpec>> for RiQueryStr<UriSpec>

ยง

impl AsRef<RiQueryStr<IriSpec>> for RiQueryString<UriSpec>

ยง

impl AsRef<RiReferenceStr<IriSpec>> for RiReferenceStr<UriSpec>

ยง

impl AsRef<RiReferenceStr<IriSpec>> for RiReferenceString<UriSpec>

ยง

impl AsRef<RiRelativeStr<IriSpec>> for RiRelativeStr<UriSpec>

ยง

impl AsRef<RiRelativeStr<IriSpec>> for RiRelativeString<UriSpec>

ยง

impl AsRef<RiStr<IriSpec>> for RiStr<UriSpec>

ยง

impl AsRef<RiStr<IriSpec>> for RiString<UriSpec>

ยง

impl AsRef<Semaphore> for PollSemaphore

ยง

impl AsRef<TcpStream> for OwnedReadHalf

ยง

impl AsRef<TcpStream> for OwnedWriteHalf

ยง

impl AsRef<TcpStream> for ReadHalf<'_>

ยง

impl AsRef<TcpStream> for WriteHalf<'_>

ยง

impl AsRef<UnixStream> for OwnedReadHalf

ยง

impl AsRef<UnixStream> for OwnedWriteHalf

ยง

impl AsRef<UnixStream> for ReadHalf<'_>

ยง

impl AsRef<UnixStream> for WriteHalf<'_>

ยง

impl AsRef<UriTemplateStr> for UriTemplateStr

ยง

impl AsRef<UriTemplateStr> for UriTemplateString

ยง

impl AsRef<Utf8Path> for str

ยง

impl AsRef<Utf8Path> for String

ยง

impl AsRef<Utf8Path> for Iter<'_>

ยง

impl AsRef<Utf8Path> for Utf8Component<'_>

ยง

impl AsRef<Utf8Path> for Utf8Components<'_>

ยง

impl AsRef<Utf8Path> for Utf8Path

ยง

impl AsRef<Utf8Path> for Utf8PathBuf

ยง

impl AsRef<[u8; 4]> for Ipv4Addr

ยง

impl AsRef<[u8; 12]> for Nonce

ยง

impl AsRef<[u8; 16]> for Ipv6Addr

1.0.0 ยท Sourceยง

impl AsRef<[u8]> for str

ยง

impl AsRef<[u8]> for HeaderName

ยง

impl AsRef<[u8]> for HeaderValue

ยง

impl AsRef<[u8]> for BytesMut

ยง

impl AsRef<[u8]> for flams_router_vscode::server_fn::Bytes

Sourceยง

impl AsRef<[u8]> for ByteStr

Sourceยง

impl AsRef<[u8]> for ByteString

1.0.0 ยท Sourceยง

impl AsRef<[u8]> for String

Sourceยง

impl AsRef<[u8]> for Oid

Sourceยง

impl AsRef<[u8]> for DigestBytes

Sourceยง

impl AsRef<[u8]> for OpensslString

Sourceยง

impl AsRef<[u8]> for OpensslStringRef

Sourceยง

impl AsRef<[u8]> for Uuid

ยง

impl AsRef<[u8]> for AeadKey

ยง

impl AsRef<[u8]> for AlgorithmIdentifier

ยง

impl AsRef<[u8]> for AlignedVec

ยง

impl AsRef<[u8]> for AssociatedData

ยง

impl AsRef<[u8]> for BStr

ยง

impl AsRef<[u8]> for BStr

ยง

impl AsRef<[u8]> for Bytes

ยง

impl AsRef<[u8]> for Bytes

ยง

impl AsRef<[u8]> for CertificateDer<'_>

ยง

impl AsRef<[u8]> for CertificateRevocationListDer<'_>

ยง

impl AsRef<[u8]> for CertificateSigningRequestDer<'_>

ยง

impl AsRef<[u8]> for Der<'_>

ยง

impl AsRef<[u8]> for Digest

ยง

impl AsRef<[u8]> for DistinguishedName

ยง

impl AsRef<[u8]> for Document

ยง

impl AsRef<[u8]> for EchConfigListBytes<'_>

ยง

impl AsRef<[u8]> for Iv

ยง

impl AsRef<[u8]> for KeyId

ยง

impl AsRef<[u8]> for Literal

ยง

impl AsRef<[u8]> for Mmap

ยง

impl AsRef<[u8]> for MmapMut

ยง

impl AsRef<[u8]> for OkmBlock

ยง

impl AsRef<[u8]> for Output

ยง

impl AsRef<[u8]> for Output

ยง

impl AsRef<[u8]> for OwnedBytes

ยง

impl AsRef<[u8]> for PrefixedPayload

ยง

impl AsRef<[u8]> for Protocol

ยง

impl AsRef<[u8]> for Protocol

ยง

impl AsRef<[u8]> for PublicKey

ยง

impl AsRef<[u8]> for PublicKey

ยง

impl AsRef<[u8]> for ReasonPhrase

ยง

impl AsRef<[u8]> for Signature

ยง

impl AsRef<[u8]> for SqliteOwnedBuf

ยง

impl AsRef<[u8]> for SubjectPublicKeyInfoDer<'_>

ยง

impl AsRef<[u8]> for Tag

ยง

impl AsRef<[u8]> for Tag

ยง

impl AsRef<[u8]> for Tag

ยง

impl AsRef<[u8]> for Tag

ยง

impl AsRef<[u8]> for Utf8Bytes

ยง

impl AsRef<[u64]> for Block

Sourceยง

impl AsRef<dyn Error + Send + Sync> for anyhow::Error

Sourceยง

impl AsRef<dyn Error + Send + Sync> for Report

Sourceยง

impl AsRef<dyn Error> for anyhow::Error

Sourceยง

impl AsRef<dyn Error> for Report

1.55.0 ยท Sourceยง

impl<'a> AsRef<str> for alloc::string::Drain<'a>

Sourceยง

impl<'a> AsRef<str> for Name<'a>

ยง

impl<'a> AsRef<str> for CSSString<'a>

ยง

impl<'a> AsRef<str> for CowArcStr<'a>

ยง

impl<'a> AsRef<str> for CowRcStr<'a>

ยง

impl<'a> AsRef<str> for CustomIdent<'a>

ยง

impl<'a> AsRef<str> for DashedIdent<'a>

ยง

impl<'a> AsRef<str> for Ident<'a>

ยง

impl<'a> AsRef<str> for Ident<'a>

ยง

impl<'a> AsRef<str> for Salt<'a>

ยง

impl<'a> AsRef<str> for Value<'a>

ยง

impl<'a> AsRef<Cookie<'a>> for Cookie<'a>

ยง

impl<'a> AsRef<Cookie<'a>> for CookieBuilder<'a>

ยง

impl<'a> AsRef<Event<'a>> for Event<'a>

1.55.0 ยท Sourceยง

impl<'a> AsRef<[u8]> for alloc::string::Drain<'a>

ยง

impl<'a> AsRef<[u8]> for LocalName<'a>

ยง

impl<'a> AsRef<[u8]> for Namespace<'a>

ยง

impl<'a> AsRef<[u8]> for Prefix<'a>

ยง

impl<'a> AsRef<[u8]> for QName<'a>

ยง

impl<'a, K, V, T, TDeref> AsRef<TDeref> for MappedRef<'a, K, V, T>
where K: Eq + Hash, T: AsRef<TDeref>, TDeref: ?Sized,

ยง

impl<'a, K, V, T, TDeref> AsRef<TDeref> for MappedRef<'a, K, V, T>
where K: Eq + Hash, T: AsRef<TDeref>, TDeref: ?Sized,

ยง

impl<'a, T> AsRef<ZeroSlice<T>> for ZeroVec<'a, T>
where T: AsULE,

ยง

impl<'a, T> AsRef<[<T as AsULE>::ULE]> for ZeroVec<'a, T>
where T: AsULE,

1.46.0 ยท Sourceยง

impl<'a, T, A> AsRef<[T]> for alloc::vec::drain::Drain<'a, T, A>
where A: Allocator,

ยง

impl<'a, T, A> AsRef<[T]> for Drain<'a, T, A>
where A: Allocator,

ยง

impl<'i> AsRef<str> for CustomPropertyName<'i>

ยง

impl<'i> AsRef<[Spanned<DeValue<'i>>]> for DeArray<'i>

Sourceยง

impl<'k> AsRef<str> for Key<'k>

Sourceยง

impl<A> AsRef<A> for Interned<Arc<A>>
where A: ?Sized,

ยง

impl<A> AsRef<[<A as Array>::Item]> for SmallVec<A>
where A: Array,

ยง

impl<A> AsRef<[u8]> for Aad<A>
where A: AsRef<[u8]>,

ยง

impl<B> AsRef<[u8]> for UnparsedPublicKey<B>
where B: AsRef<[u8]>,

ยง

impl<B> AsRef<[u8]> for UnparsedPublicKey<B>
where B: AsRef<[u8]>,

Sourceยง

impl<C, T, const N: usize> AsRef<[T; N]> for Alpha<C, T>
where Alpha<C, T>: ArrayCast<Array = [T; N]>,

Sourceยง

impl<C, T, const N: usize> AsRef<[T]> for Alpha<C, T>
where Alpha<C, T>: ArrayCast<Array = [T; N]>,

Sourceยง

impl<C, T, const N: usize> AsRef<Alpha<C, T>> for [T; N]
where Alpha<C, T>: ArrayCast<Array = [T; N]>,

Sourceยง

impl<C, const N: usize> AsRef<PreAlpha<C>> for [<C as Premultiply>::Scalar; N]
where C: Premultiply, PreAlpha<C>: ArrayCast<Array = [<C as Premultiply>::Scalar; N]>,

Sourceยง

impl<C, const N: usize> AsRef<[<C as Premultiply>::Scalar; N]> for PreAlpha<C>
where C: Premultiply, PreAlpha<C>: ArrayCast<Array = [<C as Premultiply>::Scalar; N]>,

Sourceยง

impl<C, const N: usize> AsRef<[<C as Premultiply>::Scalar]> for PreAlpha<C>
where C: Premultiply, PreAlpha<C>: ArrayCast<Array = [<C as Premultiply>::Scalar; N]>,

ยง

impl<DB> AsRef<<DB as Database>::Connection> for PoolConnection<DB>
where DB: Database,

ยง

impl<Data> AsRef<Fst<Data>> for Map<Data>

Returns the underlying finite state transducer.

Sourceยง

impl<F> AsRef<Path> for NamedTempFile<F>

ยง

impl<F, A> AsRef<<F as SliceFormat>::Slice> for Tendril<F, A>
where F: SliceFormat, A: Atomicity,

ยง

impl<F, W> AsRef<F> for With<F, W>
where F: ?Sized,

ยง

impl<I> AsRef<I> for LocatingSlice<I>

ยง

impl<I> AsRef<I> for LocatingSlice<I>

ยง

impl<I, S> AsRef<I> for Stateful<I, S>

ยง

impl<I, S> AsRef<I> for Stateful<I, S>

Sourceยง

impl<L, R> AsRef<str> for Either<L, R>
where L: AsRef<str>, R: AsRef<str>,

Sourceยง

impl<L, R> AsRef<CStr> for Either<L, R>
where L: AsRef<CStr>, R: AsRef<CStr>,

Requires crate feature std.

Sourceยง

impl<L, R> AsRef<OsStr> for Either<L, R>
where L: AsRef<OsStr>, R: AsRef<OsStr>,

Requires crate feature std.

Sourceยง

impl<L, R> AsRef<Path> for Either<L, R>
where L: AsRef<Path>, R: AsRef<Path>,

Requires crate feature std.

Sourceยง

impl<L, R, Target> AsRef<[Target]> for Either<L, R>
where L: AsRef<[Target]>, R: AsRef<[Target]>,

Sourceยง

impl<L, R, Target> AsRef<Target> for Either<L, R>
where L: AsRef<Target>, R: AsRef<Target>,

Sourceยง

impl<O> AsRef<Packed<O, u8>> for u8

Sourceยง

impl<O> AsRef<Packed<O, u16>> for u16

Sourceยง

impl<O> AsRef<Packed<O, u32>> for u32

Sourceยง

impl<O> AsRef<Packed<O, u64>> for u64

Sourceยง

impl<O> AsRef<Packed<O, u128>> for u128

ยง

impl<O> AsRef<[u8; 2]> for I16<O>

ยง

impl<O> AsRef<[u8; 2]> for U16<O>

ยง

impl<O> AsRef<[u8; 4]> for F32<O>

ยง

impl<O> AsRef<[u8; 4]> for I32<O>

ยง

impl<O> AsRef<[u8; 4]> for U32<O>

ยง

impl<O> AsRef<[u8; 8]> for F64<O>

ยง

impl<O> AsRef<[u8; 8]> for I64<O>

ยง

impl<O> AsRef<[u8; 8]> for Isize<O>

ยง

impl<O> AsRef<[u8; 8]> for U64<O>

ยง

impl<O> AsRef<[u8; 8]> for Usize<O>

ยง

impl<O> AsRef<[u8; 16]> for I128<O>

ยง

impl<O> AsRef<[u8; 16]> for U128<O>

Sourceยง

impl<O, P> AsRef<P> for Packed<O, P>
where Packed<O, P>: UintCast<Uint = P>,

Sourceยง

impl<O, T, const N: usize> AsRef<[T; N]> for Packed<O, [T; N]>

Sourceยง

impl<O, T, const N: usize> AsRef<[T]> for Packed<O, [T; N]>

Sourceยง

impl<O, T, const N: usize> AsRef<Packed<O, [T; N]>> for [T; N]

Sourceยง

impl<Outer, Inner> AsRef<Inner> for InnerArc<Outer, Inner>

Sourceยง

impl<P> AsRef<<P as Ptr>::A> for Interned<P>
where P: Ptr,

ยง

impl<S> AsRef<str> for Ascii<S>
where S: AsRef<str>,

ยง

impl<S> AsRef<str> for RiAbsoluteStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiAbsoluteString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiFragmentStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiFragmentString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiQueryStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiQueryString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiReferenceStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiReferenceString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiRelativeStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiRelativeString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiStr<S>
where S: Spec,

ยง

impl<S> AsRef<str> for RiString<S>
where S: Spec,

ยง

impl<S> AsRef<str> for UniCase<S>
where S: AsRef<str>,

Sourceยง

impl<S> AsRef<Luma<S>> for f32

Sourceยง

impl<S> AsRef<Luma<S, f64>> for f64

Sourceยง

impl<S> AsRef<Luma<S, u8>> for u8

Sourceยง

impl<S> AsRef<Luma<S, u16>> for u16

Sourceยง

impl<S> AsRef<Luma<S, u32>> for u32

Sourceยง

impl<S> AsRef<Luma<S, u64>> for u64

Sourceยง

impl<S> AsRef<Luma<S, u128>> for u128

ยง

impl<S> AsRef<RiAbsoluteStr<S>> for RiAbsoluteStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiAbsoluteStr<S>> for RiAbsoluteString<S>
where S: Spec,

ยง

impl<S> AsRef<RiFragmentStr<S>> for RiFragmentStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiFragmentStr<S>> for RiFragmentString<S>
where S: Spec,

ยง

impl<S> AsRef<RiQueryStr<S>> for RiQueryStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiQueryStr<S>> for RiQueryString<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiAbsoluteStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiAbsoluteString<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiReferenceStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiReferenceString<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiRelativeStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiRelativeString<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiReferenceStr<S>> for RiString<S>
where S: Spec,

ยง

impl<S> AsRef<RiRelativeStr<S>> for RiRelativeStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiRelativeStr<S>> for RiRelativeString<S>
where S: Spec,

ยง

impl<S> AsRef<RiStr<S>> for RiAbsoluteStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiStr<S>> for RiAbsoluteString<S>
where S: Spec,

ยง

impl<S> AsRef<RiStr<S>> for RiStr<S>
where S: Spec,

ยง

impl<S> AsRef<RiStr<S>> for RiString<S>
where S: Spec,

Sourceยง

impl<S, T> AsRef<[T; 1]> for Luma<S, T>

Sourceยง

impl<S, T> AsRef<[T; 3]> for Hsl<S, T>

Sourceยง

impl<S, T> AsRef<[T; 3]> for Hsv<S, T>

Sourceยง

impl<S, T> AsRef<[T; 3]> for Hwb<S, T>

Sourceยง

impl<S, T> AsRef<[T; 3]> for Rgb<S, T>

Sourceยง

impl<S, T> AsRef<[T]> for Hsl<S, T>

Sourceยง

impl<S, T> AsRef<[T]> for Hsv<S, T>

Sourceยง

impl<S, T> AsRef<[T]> for Hwb<S, T>

Sourceยง

impl<S, T> AsRef<[T]> for Luma<S, T>

Sourceยง

impl<S, T> AsRef<[T]> for Rgb<S, T>

Sourceยง

impl<S, T> AsRef<Hsl<S, T>> for [T; 3]

Sourceยง

impl<S, T> AsRef<Hsv<S, T>> for [T; 3]

Sourceยง

impl<S, T> AsRef<Hwb<S, T>> for [T; 3]

Sourceยง

impl<S, T> AsRef<Luma<S, T>> for [T; 1]

Sourceยง

impl<S, T> AsRef<Rgb<S, T>> for [T; 3]

Sourceยง

impl<S, T> AsRef<T> for Luma<S, T>

ยง

impl<Static> AsRef<str> for Atom<Static>
where Static: StaticAtomSet,

ยง

impl<Store> AsRef<ZeroAsciiIgnoreCaseTrie<[u8]>> for ZeroAsciiIgnoreCaseTrie<Store>
where Store: AsRef<[u8]> + ?Sized,

ยง

impl<Store> AsRef<ZeroTrieExtendedCapacity<[u8]>> for ZeroTrieExtendedCapacity<Store>
where Store: AsRef<[u8]> + ?Sized,

ยง

impl<Store> AsRef<ZeroTriePerfectHash<[u8]>> for ZeroTriePerfectHash<Store>
where Store: AsRef<[u8]> + ?Sized,

ยง

impl<Store> AsRef<ZeroTrieSimpleAscii<[u8]>> for ZeroTrieSimpleAscii<Store>
where Store: AsRef<[u8]> + ?Sized,

ยง

impl<T> AsRef<[T; 1]> for GenericArray<T, UInt<UTerm, B1>>

ยง

impl<T> AsRef<[T; 2]> for GenericArray<T, UInt<UInt<UTerm, B1>, B0>>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Jch<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Jmh<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Jsh<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Qch<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Qmh<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16Qsh<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16UcsJab<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Cam16UcsJmh<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Okhsl<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Okhsv<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Okhwb<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Oklab<T>

Sourceยง

impl<T> AsRef<[T; 3]> for Oklch<T>

ยง

impl<T> AsRef<[T; 3]> for GenericArray<T, UInt<UInt<UTerm, B1>, B1>>

ยง

impl<T> AsRef<[T; 4]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 5]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 6]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 7]> for GenericArray<T, UInt<UInt<UInt<UTerm, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 8]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 9]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 10]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 11]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 12]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 13]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 14]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 15]> for GenericArray<T, UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 16]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 17]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 18]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 19]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 20]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 21]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 22]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 23]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 24]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 25]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 26]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 27]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 28]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 29]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 30]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 31]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 32]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 33]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 34]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 35]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 36]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 37]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 38]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 39]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 40]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 41]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 42]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 43]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 44]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 45]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 46]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 47]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 48]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 49]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 50]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 51]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 52]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 53]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 54]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 55]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 56]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 57]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B0>, B1>>

ยง

impl<T> AsRef<[T; 58]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 59]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B0>, B1>, B1>>

ยง

impl<T> AsRef<[T; 60]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 61]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B0>, B1>>

ยง

impl<T> AsRef<[T; 62]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 63]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>>

ยง

impl<T> AsRef<[T; 64]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 70]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B1>, B0>>

ยง

impl<T> AsRef<[T; 80]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 90]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B1>, B0>, B1>, B0>>

ยง

impl<T> AsRef<[T; 100]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 128]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 200]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 256]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 300]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B1>, B0>, B1>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 400]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 500]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>>

ยง

impl<T> AsRef<[T; 512]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 1000]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B0>, B1>, B0>, B0>, B0>>

ยง

impl<T> AsRef<[T; 1024]> for GenericArray<T, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>

1.0.0 (const: unstable) ยท Sourceยง

impl<T> AsRef<[T]> for [T]

1.13.0 ยท Sourceยง

impl<T> AsRef<[T]> for flams_router_vscode::server_fn::inventory::core::slice::Iter<'_, T>

1.53.0 ยท Sourceยง

impl<T> AsRef<[T]> for IterMut<'_, T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Jch<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Jmh<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Jsh<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Qch<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Qmh<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16Qsh<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16UcsJab<T>

Sourceยง

impl<T> AsRef<[T]> for Cam16UcsJmh<T>

Sourceยง

impl<T> AsRef<[T]> for Okhsl<T>

Sourceยง

impl<T> AsRef<[T]> for Okhsv<T>

Sourceยง

impl<T> AsRef<[T]> for Okhwb<T>

Sourceยง

impl<T> AsRef<[T]> for Oklab<T>

Sourceยง

impl<T> AsRef<[T]> for Oklch<T>

ยง

impl<T> AsRef<[T]> for ArchivedVec<T>

ยง

impl<T> AsRef<[T]> for Drain<'_, T>

ยง

impl<T> AsRef<[T]> for RawArchivedVec<T>

ยง

impl<T> AsRef<[T]> for ScratchVec<T>

ยง

impl<T> AsRef<str> for Port<T>
where T: AsRef<str>,

ยง

impl<T> AsRef<str> for Iri<T>
where T: AsRef<str>,

ยง

impl<T> AsRef<str> for IriRef<T>
where T: AsRef<str>,

ยง

impl<T> AsRef<str> for LanguageTag<T>
where T: AsRef<str>,

Sourceยง

impl<T> AsRef<DhRef<T>> for Dh<T>

Sourceยง

impl<T> AsRef<DsaRef<T>> for Dsa<T>

Sourceยง

impl<T> AsRef<EcKeyRef<T>> for EcKey<T>

Sourceยง

impl<T> AsRef<PKeyRef<T>> for PKey<T>

Sourceยง

impl<T> AsRef<PkeyCtxRef<T>> for PkeyCtx<T>

Sourceยง

impl<T> AsRef<RsaRef<T>> for Rsa<T>

Sourceยง

impl<T> AsRef<StackRef<T>> for Stack<T>
where T: Stackable,

Sourceยง

impl<T> AsRef<X509LookupMethodRef<T>> for X509LookupMethod<T>

Sourceยง

impl<T> AsRef<X509LookupRef<T>> for X509Lookup<T>

Sourceยง

impl<T> AsRef<Cam16Jch<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16Jmh<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16Jsh<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16Qch<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16Qmh<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16Qsh<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16UcsJab<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Cam16UcsJmh<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Okhsl<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Okhsv<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Okhwb<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Oklab<T>> for [T; 3]

Sourceยง

impl<T> AsRef<Oklch<T>> for [T; 3]

Sourceยง

impl<T> AsRef<JsValue> for Closure<T>
where T: ?Sized,

ยง

impl<T> AsRef<Receiver<T>> for ReceiverStream<T>

ยง

impl<T> AsRef<T> for Oco<'_, T>
where T: ToOwned + ?Sized,

1.0.0 ยท Sourceยง

impl<T> AsRef<T> for Cow<'_, T>
where T: ToOwned + ?Sized,

Sourceยง

impl<T> AsRef<T> for ContentReference<T>

Sourceยง

impl<T> AsRef<T> for NarrativeReference<T>
where T: NarrationTrait,

ยง

impl<T> AsRef<T> for Arc<T>
where T: ?Sized,

ยง

impl<T> AsRef<T> for ArchivedBox<T>
where T: ArchivePointee + ?Sized,

ยง

impl<T> AsRef<T> for Json<T>

ยง

impl<T> AsRef<T> for Owned<T>
where T: Pointable + ?Sized,

ยง

impl<T> AsRef<T> for Spanned<T>

ยง

impl<T> AsRef<T> for TrackedObject<T>

ยง

impl<T> AsRef<UnboundedReceiver<T>> for UnboundedReceiverStream<T>

ยง

impl<T> AsRef<ZeroSlice<T>> for &[<T as AsULE>::ULE]
where T: AsULE,

ยง

impl<T> AsRef<ZeroSlice<T>> for alloc::vec::Vec<<T as AsULE>::ULE>
where T: AsULE,

ยง

impl<T> AsRef<[u8]> for Window<T>
where T: AsRef<[u8]>,

1.46.0 ยท Sourceยง

impl<T, A> AsRef<[T]> for alloc::vec::into_iter::IntoIter<T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> AsRef<[T]> for alloc::vec::Vec<T, A>
where A: Allocator,

ยง

impl<T, A> AsRef<[T]> for IntoIter<T, A>
where A: Allocator,

ยง

impl<T, A> AsRef<[T]> for Vec<T, A>
where A: Allocator,

1.0.0 ยท Sourceยง

impl<T, A> AsRef<Vec<T, A>> for alloc::vec::Vec<T, A>
where A: Allocator,

1.5.0 ยท Sourceยง

impl<T, A> AsRef<T> for alloc::boxed::Box<T, A>
where A: Allocator, T: ?Sized,

1.5.0 ยท Sourceยง

impl<T, A> AsRef<T> for Rc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T, A> AsRef<T> for UniqueRc<T, A>
where A: Allocator, T: ?Sized,

1.5.0 ยท Sourceยง

impl<T, A> AsRef<T> for alloc::sync::Arc<T, A>
where A: Allocator, T: ?Sized,

Sourceยง

impl<T, A> AsRef<T> for UniqueArc<T, A>
where A: Allocator, T: ?Sized,

ยง

impl<T, A> AsRef<T> for Box<T, A>
where A: Allocator, T: ?Sized,

ยง

impl<T, A> AsRef<Vec<T, A>> for Vec<T, A>
where A: Allocator,

ยง

impl<T, F> AsRef<T> for ArchivedRc<T, F>
where T: ArchivePointee + ?Sized,

ยง

impl<T, F> AsRef<VarZeroSlice<T, F>> for VarZeroSlice<T, F>
where F: VarZeroVecFormat, T: ?Sized,

ยง

impl<T, N> AsRef<[T]> for GenericArray<T, N>
where N: ArrayLength<T>,

1.0.0 (const: unstable) ยท Sourceยง

impl<T, U> AsRef<U> for &T
where T: AsRef<U> + ?Sized, U: ?Sized,

1.0.0 (const: unstable) ยท Sourceยง

impl<T, U> AsRef<U> for &mut T
where T: AsRef<U> + ?Sized, U: ?Sized,

ยง

impl<T, Z> AsRef<T> for Zeroizing<Z>
where Z: AsRef<T> + Zeroize, T: ?Sized,

Sourceยง

impl<T, const N: usize> AsRef<[T; N]> for Simd<T, N>

1.0.0 ยท Sourceยง

impl<T, const N: usize> AsRef<[T]> for [T; N]

Sourceยง

impl<T, const N: usize> AsRef<[T]> for Simd<T, N>

ยง

impl<T, const N: usize> AsRef<[T]> for SmallVec<T, N>

ยง

impl<TValueReader> AsRef<[u8]> for Reader<TValueReader>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Hsluv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Lab<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Lch<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Lchuv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Luv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Xyz<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T; 3]> for Yxy<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Hsluv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Lab<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Lch<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Lchuv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Luv<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Xyz<Wp, T>

Sourceยง

impl<Wp, T> AsRef<[T]> for Yxy<Wp, T>

Sourceยง

impl<Wp, T> AsRef<Hsluv<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Lab<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Lch<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Lchuv<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Luv<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Xyz<Wp, T>> for [T; 3]

Sourceยง

impl<Wp, T> AsRef<Yxy<Wp, T>> for [T; 3]

ยง

impl<const MIN: i8, const MAX: i8> AsRef<i8> for RangedI8<MIN, MAX>

ยง

impl<const MIN: i16, const MAX: i16> AsRef<i16> for RangedI16<MIN, MAX>

ยง

impl<const MIN: i32, const MAX: i32> AsRef<i32> for RangedI32<MIN, MAX>

ยง

impl<const MIN: i64, const MAX: i64> AsRef<i64> for RangedI64<MIN, MAX>

ยง

impl<const MIN: i128, const MAX: i128> AsRef<i128> for RangedI128<MIN, MAX>

ยง

impl<const MIN: isize, const MAX: isize> AsRef<isize> for RangedIsize<MIN, MAX>

ยง

impl<const MIN: u8, const MAX: u8> AsRef<u8> for RangedU8<MIN, MAX>

ยง

impl<const MIN: u16, const MAX: u16> AsRef<u16> for RangedU16<MIN, MAX>

ยง

impl<const MIN: u32, const MAX: u32> AsRef<u32> for RangedU32<MIN, MAX>

ยง

impl<const MIN: u64, const MAX: u64> AsRef<u64> for RangedU64<MIN, MAX>

ยง

impl<const MIN: u128, const MAX: u128> AsRef<u128> for RangedU128<MIN, MAX>

ยง

impl<const MIN: usize, const MAX: usize> AsRef<usize> for RangedUsize<MIN, MAX>

ยง

impl<const N: usize> AsRef<[u8]> for AlignedBytes<N>

ยง

impl<const SIZE: usize> AsRef<str> for WriteBuffer<SIZE>

ยง

impl<const SIZE: usize> AsRef<[u8]> for WriteBuffer<SIZE>

ยง

impl<const V: &'static str> AsRef<str> for Static<V>