Searched defs:Nullable (Results 1 – 6 of 6) sorted by relevance
1 pub struct Nullable<T: NotNull>(T); struct6 type Nullable; typedef10 type Nullable = Nullable<T>; typedef13 impl<T: NotNull> IntoNullable for Nullable<T> { implementation14 type Nullable = Nullable<T>; typedef
4 pub trait Nullable { interface10 impl<T> Nullable for *const T { impl
227 using Nullable = nullability_internal::NullableImpl<T>; variable
9 enum Nullable<T> { enum
139 Nullable = 1 << 4, enumerator
86704 struct Nullable struct86707 Maybe<T> mValue;86710 Nullable() in Nullable() argument86714 Nullable(const decltype(nullptr)&) in Nullable() function86718 explicit Nullable(const T& aValue) in Nullable() function86724 Nullable(T&& aValue) in Nullable() function86730 Nullable(Nullable<T>&& aOther) in Nullable() function86734 Nullable(const Nullable<T>& aOther) in Nullable() function86738 void operator=(const Nullable<T>& aOther) in operator =()86743 void SetValue(const T& aArgs) in SetValue()[all …]