Struct glib::value::TypedValue
[−]
[src]
pub struct TypedValue<T>(_, _);
A statically typed Value.
It dereferences to Value and can be used everywhere Value references are
accepted.
See the module documentation for more details.
Methods
impl<'a, T: FromValueOptional<'a> + SetValue> TypedValue<T>[src]
fn get(&'a self) -> Option<T>
Returns the value.
Types that don't support a None value always return Some. See
get_some.
fn get_some(&'a self) -> T where
T: FromValue<'a>,
T: FromValue<'a>,
Returns the value.
This method is only available for types that don't support a None
value.
fn set<U: ?Sized + SetValueOptional>(&mut self, value: Option<&U>) where
T: Borrow<U>,
T: Borrow<U>,
Sets the value.
This method is only available for types that support a None value.
fn set_none(&mut self) where
T: SetValueOptional,
T: SetValueOptional,
Sets the value to None.
This method is only available for types that support a None value.
fn set_some<U: ?Sized + SetValue>(&mut self, value: &U) where
T: Borrow<U>,
T: Borrow<U>,
Sets the value.
Methods from Deref<Target = Value>
fn downcast<'a, T: FromValueOptional<'a> + SetValue>(
self
) -> Result<TypedValue<T>, Self>
self
) -> Result<TypedValue<T>, Self>
Tries to downcast to a TypedValue.
Returns Ok(TypedValue<T>) if the value carries a type corresponding
to T and Err(self) otherwise.
fn get<'a, T: FromValueOptional<'a>>(&'a self) -> Option<T>
Tries to get a value of type T.
Returns Some if the type is correct and the value is not None.
This function doesn't distinguish between type mismatches and correctly
typed None values. Use downcast or is for that.
fn is<'a, T: FromValueOptional<'a> + SetValue>(&self) -> bool
Returns true if the type of the value corresponds to T.
fn type_(&self) -> Type
Returns the type of the value.
Trait Implementations
impl<T> Clone for TypedValue<T>[src]
fn clone(&self) -> Self
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<T> Debug for TypedValue<T>[src]
impl<T> Deref for TypedValue<T>[src]
type Target = Value
The resulting type after dereferencing
fn deref(&self) -> &Value
The method called to dereference a value
impl<T> DerefMut for TypedValue<T>[src]
impl<'a, T: FromValueOptional<'a> + SetValueOptional> From<Option<&'a T>> for TypedValue<T>[src]
impl<'a, T: FromValueOptional<'a> + SetValue> From<&'a T> for TypedValue<T>[src]
fn from(value: &'a T) -> Self
Performs the conversion.
impl<'a> From<Option<&'a str>> for TypedValue<String>[src]
impl<'a> From<&'a str> for TypedValue<String>[src]
impl<'a> From<TypedValue<&'a str>> for TypedValue<String>[src]
fn from(value: TypedValue<&str>) -> Self
Performs the conversion.
impl<'a> From<TypedValue<String>> for TypedValue<&'a str>[src]
fn from(value: TypedValue<String>) -> Self
Performs the conversion.