Struct AnalysisModule_Interface

Source
#[repr(C)]
pub struct AnalysisModule_Interface(/* private fields */);
Expand description

A marker type describing the traits that are required when constructing AnalysisModule_TO,and are then implemented by it, by implementing the InterfaceType trait.

Implementations§

Trait Implementations§

Source§

impl GetStaticEquivalent_ for AnalysisModule_Interface

Source§

type StaticEquivalent = _static_AnalysisModule_Interface

Source§

impl InterfaceType for AnalysisModule_Interface

Source§

impl StableAbi for AnalysisModule_Interface

Source§

const LAYOUT: &'static TypeLayout

The layout of the type provided by implementors.
Source§

type IsNonZeroType = False

Whether this type has a single invalid bit-pattern. Read more
Source§

const ABI_CONSTS: AbiConsts = _

const-equivalents of the associated types.

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> GetWithMetadata for T

Source§

type ForSelf = WithMetadata_<T, T>

This is always WithMetadata_<Self, Self>
Source§

impl<I> InterfaceBound for I

Source§

const Clone: bool = <I::Clone as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Default: bool = <I::Default as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Display: bool = <I::Display as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Debug: bool = <I::Debug as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Serialize: bool = <I::Serialize as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const PartialEq: bool = <I::PartialEq as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Ord: bool = <I::Ord as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const PartialOrd: bool = <I::PartialOrd as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Hash: bool = <I::Hash as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const Iterator: bool = <I::Iterator as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const DoubleEndedIterator: bool = <I::DoubleEndedIterator as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const FmtWrite: bool = <I::FmtWrite as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const IoWrite: bool = <I::IoWrite as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const IoRead: bool = <I::IoRead as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const IoBufRead: bool = <I::IoBufRead as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const IoSeek: bool = <I::IoSeek as IsImplemented>::VALUE

Whether the trait is required, and is usable by a DynTrait parameterized with this InterfaceType.
Source§

const __InterfaceBound_BLANKET_IMPL: PrivStruct<I>

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> SelfOps for T
where T: ?Sized,

Source§

const T: PhantomData<fn() -> Self> = PhantomData

Represents Self by using a VariantPhantom, using the syntax Type::T to pass it in methods with _:VariantPhantom<T> parameters. Read more
Source§

const T_D: PhantomData<Self> = PhantomData

Represents Self by using a VariantDropPhantom,for specialized cases. Read more
Source§

fn assert_ty(self, _other: PhantomData<fn() -> Self>) -> Self
where Self: Sized,

Asserts that other is the same type as self.
Source§

fn assert_ty_ref(&self, _other: PhantomData<fn() -> Self>) -> &Self
where Self: Sized,

Asserts that other is the same type as self.
Source§

fn assert_ty_mut(&mut self, _other: PhantomData<fn() -> Self>) -> &mut Self
where Self: Sized,

Asserts that other is the same type as self.
Source§

fn ty_(&self) -> PhantomData<fn() -> Self>

Equivalent to SelfOps::T,as a method. Read more
Source§

fn ty_d(&self) -> PhantomData<Self>

Equivalent to Self::ty_,for specialized cases. Read more
Source§

fn ty_inv(&self) -> PhantomData<fn(Self) -> Self>

Equivalent to Self::ty_ with an invariant type.
Source§

fn ty_inv_ref(&self) -> PhantomData<Cell<&Self>>

Equivalent to Self::ty_ with an invariant lifetime.
Source§

fn eq_id(&self, other: &Self) -> bool

Identity comparison to another value of the same type. Read more
Source§

fn piped<F, U>(self, f: F) -> U
where F: FnOnce(Self) -> U, Self: Sized,

Emulates the pipeline operator,allowing method syntax in more places. Read more
Source§

fn piped_ref<'a, F, U>(&'a self, f: F) -> U
where F: FnOnce(&'a Self) -> U,

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more
Source§

fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U
where F: FnOnce(&'a mut Self) -> U,

The same as piped except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self.
Source§

fn mutated<F>(self, f: F) -> Self
where F: FnOnce(&mut Self), Self: Sized,

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more
Source§

fn observe<F>(self, f: F) -> Self
where F: FnOnce(&Self), Self: Sized,

Observes the value of self passing it along unmodified. Useful in a long method chain. Read more
Source§

fn into_<T>(self, _: PhantomData<fn() -> T>) -> T
where Self: Into<T>,

Performs a conversion using Into. Read more
Source§

fn as_ref_<T>(&self) -> &T
where Self: AsRef<T>, T: ?Sized,

Performs a reference to reference conversion using AsRef, using the turbofish .as_ref_::<_>() syntax. Read more
Source§

fn as_mut_<T>(&mut self) -> &mut T
where Self: AsMut<T>, T: ?Sized,

Performs a mutable reference to mutable reference conversion using AsMut, using the turbofish .as_mut_::<_>() syntax. Read more
Source§

fn drop_(self)
where Self: Sized,

Drops self using method notation. Alternative to std::mem::drop. Read more
Source§

impl<This> TransmuteElement for This
where This: ?Sized,

Source§

unsafe fn transmute_element<T>(self) -> Self::TransmutedPtr
where Self: CanTransmuteElement<T>, Self::Target: Sized,

Transmutes the element type of this pointer.. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion
Source§

impl<T> TypeIdentity for T
where T: ?Sized,

Source§

type Type = T

The same type as Self. Read more
Source§

fn into_type_val(self) -> Self::Type
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
Source§

fn into_type_ref(&self) -> &Self::Type

Converts a reference back to the original type.
Source§

fn into_type_mut(&mut self) -> &mut Self::Type

Converts a mutable reference back to the original type.
Source§

fn into_type_box(self: Box<Self>) -> Box<Self::Type>

Converts a box back to the original type.
Source§

fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>

Converts an Arc back to the original type.
Source§

fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>

Converts an Rc back to the original type.
Source§

fn from_type_val(this: Self::Type) -> Self
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
Source§

fn from_type_ref(this: &Self::Type) -> &Self

Converts a reference back to the original type.
Source§

fn from_type_mut(this: &mut Self::Type) -> &mut Self

Converts a mutable reference back to the original type.
Source§

fn from_type_box(this: Box<Self::Type>) -> Box<Self>

Converts a box back to the original type.
Source§

fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>

Converts an Arc back to the original type.
Source§

fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>

Converts an Rc back to the original type.