Struct gstreamer::IntRange

source ·
pub struct IntRange<T> { /* private fields */ }

Implementations§

source§

impl<T: Copy> IntRange<T>

source

pub fn min(&self) -> T

source

pub fn max(&self) -> T

source

pub fn step(&self) -> T

source§

impl<T: IntRangeType> IntRange<T>

source

pub fn new(min: T, max: T) -> IntRange<T>

source

pub fn with_step(min: T, max: T, step: T) -> IntRange<T>

Trait Implementations§

source§

impl<T: Clone> Clone for IntRange<T>

source§

fn clone(&self) -> IntRange<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for IntRange<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<'de, T> Deserialize<'de> for IntRange<T>
where T: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<(i32, i32)> for IntRange<i32>

source§

fn from((min, max): (i32, i32)) -> Self

Converts to this type from the input type.
source§

impl From<(i32, i32, i32)> for IntRange<i32>

source§

fn from((min, max, step): (i32, i32, i32)) -> Self

Converts to this type from the input type.
source§

impl From<(i64, i64)> for IntRange<i64>

source§

fn from((min, max): (i64, i64)) -> Self

Converts to this type from the input type.
source§

impl From<(i64, i64, i64)> for IntRange<i64>

source§

fn from((min, max, step): (i64, i64, i64)) -> Self

Converts to this type from the input type.
source§

impl From<IntRange<i32>> for Value

source§

fn from(v: IntRange<i32>) -> Value

Converts to this type from the input type.
source§

impl From<IntRange<i64>> for Value

source§

fn from(v: IntRange<i64>) -> Value

Converts to this type from the input type.
source§

impl<'a> FromValue<'a> for IntRange<i32>

§

type Checker = GenericValueTypeChecker<IntRange<i32>>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl<'a> FromValue<'a> for IntRange<i64>

§

type Checker = GenericValueTypeChecker<IntRange<i64>>

Value type checker.
source§

unsafe fn from_value(value: &'a Value) -> Self

Get the contained value from a Value. Read more
source§

impl<T: Hash> Hash for IntRange<T>

source§

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

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

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

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

impl<T: PartialEq> PartialEq for IntRange<T>

source§

fn eq(&self, other: &IntRange<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Serialize for IntRange<T>
where T: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StaticType for IntRange<i32>

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl StaticType for IntRange<i64>

source§

fn static_type() -> Type

Returns the type identifier of Self.
source§

impl ToValue for IntRange<i32>

source§

fn to_value(&self) -> Value

Convert a value to a Value.
source§

fn value_type(&self) -> Type

Returns the type identifier of self. Read more
source§

impl ToValue for IntRange<i64>

source§

fn to_value(&self) -> Value

Convert a value to a Value.
source§

fn value_type(&self) -> Type

Returns the type identifier of self. Read more
source§

impl ValueType for IntRange<i32>

§

type Type = IntRange<i32>

Type to get the Type from. Read more
source§

impl ValueType for IntRange<i64>

§

type Type = IntRange<i64>

Type to get the Type from. Read more
source§

impl<T: Copy> Copy for IntRange<T>

source§

impl<T: Eq> Eq for IntRange<T>

source§

impl<T> StructuralPartialEq for IntRange<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for IntRange<T>
where T: RefUnwindSafe,

§

impl<T> Send for IntRange<T>
where T: Send,

§

impl<T> Sync for IntRange<T>
where T: Sync,

§

impl<T> Unpin for IntRange<T>
where T: Unpin,

§

impl<T> UnwindSafe for IntRange<T>
where T: UnwindSafe,

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, 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> IntoClosureReturnValue for T
where T: Into<Value>,

source§

impl<T> StaticTypeExt for T
where T: StaticType,

source§

fn ensure_type()

Ensures that the type has been registered with the type system.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToSendValue for T
where T: Send + ToValue + ?Sized,

source§

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,