Trait gstreamer::prelude::GhostPadExt[][src]

pub trait GhostPadExt {
    fn get_target(&self) -> Option<Pad>;
fn set_target<'a, P: IsA<Pad> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        newtarget: Q
    ) -> Result<(), BoolError>; }

Trait containing all GhostPad methods.

Implementors

GhostPad

Required Methods

Get the target pad of self. Unref target pad after usage.

Returns

the target Pad, can be None if the ghostpad has no target set. Unref target pad after usage.

Set the new target of the ghostpad self. Any existing target is unlinked and links to the new target are established. if newtarget is None the target will be cleared.

newtarget

the new pad target

Returns

true if the new target could be set. This function can return false when the internal pads could not be linked.

Implementors