#[repr(transparent)]pub struct Uri<T = QueryRef>(T);Tuple Fields§
§0: TImplementations§
Source§impl Uri
impl Uri
pub fn uri(&self) -> Option<GString>
pub fn redirection(&self) -> (Option<GString>, bool)
pub fn uri_redirection(&self) -> Option<GString>
pub fn uri_redirection_permanent(&self) -> bool
pub fn set_uri<'a, T>(&mut self, uri: impl Into<Option<&'a T>>)
pub fn set_redirection<'a, T>( &mut self, uri: impl Into<Option<&'a T>>, permanent: bool, )
Methods from Deref<Target = QueryRef>§
pub fn as_ptr(&self) -> *const GstQuery
pub fn as_mut_ptr(&self) -> *mut GstQuery
pub fn copy(&self) -> Query
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn upcast_mut(&mut self) -> &mut MiniObjectRef
pub fn mark_may_be_leaked(&mut self)
pub fn structure(&self) -> Option<&StructureRef>
pub fn structure_mut(&mut self) -> &mut StructureRef
pub fn is_downstream(&self) -> bool
pub fn is_upstream(&self) -> bool
pub fn is_serialized(&self) -> bool
pub fn type_(&self) -> QueryType
pub fn view(&self) -> QueryView<'_>
pub fn view_mut(&mut self) -> QueryViewMut<'_>
Trait Implementations§
Source§impl BorrowMut<Uri> for Uri<Query>
impl BorrowMut<Uri> for Uri<Query>
Source§fn borrow_mut(&mut self) -> &mut Uri
fn borrow_mut(&mut self) -> &mut Uri
Mutably borrows from an owned value. Read more
Auto Trait Implementations§
impl<T> Freeze for Uri<T>where
T: Freeze,
impl<T> RefUnwindSafe for Uri<T>where
T: RefUnwindSafe,
impl<T> Send for Uri<T>where
T: Send,
impl<T> Sync for Uri<T>where
T: Sync,
impl<T> Unpin for Uri<T>where
T: Unpin,
impl<T> UnwindSafe for Uri<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more