pub struct StreamingGenerator(/* private fields */);Implementations§
Source§impl StreamingGenerator
impl StreamingGenerator
pub fn from_file<P: AsRef<Path>>( context: &Context, path: P, ) -> Result<StreamingGenerator>
pub fn from_stream_handle( context: &Context, handle: StreamHandle, ) -> Result<StreamingGenerator>
pub fn from_stream_params( context: &Context, protocol: &str, path: &str, param: usize, ) -> Result<StreamingGenerator>
pub fn pitch_bend(&self) -> DoubleProperty<'_>
pub fn gain(&self) -> DoubleProperty<'_>
pub fn looping(&self) -> BoolProperty<'_>
pub fn playback_position(&self) -> DoubleProperty<'_>
pub fn handle(&self) -> &Handle
pub fn into_handle(self) -> Handle
pub fn get_type(&self) -> Result<ObjectType>
Sourcepub fn cast_to<T: CastTarget>(&self) -> Result<Option<T>>
pub fn cast_to<T: CastTarget>(&self) -> Result<Option<T>>
Try to cast this object to another object type. Will return
Ok(None) if this is because of a type mismatch, otherwise Err.
Clones self on success in order to prevent throwing the object
away on error.
pub fn get_userdata(&self) -> Result<Option<Arc<dyn Any + Send + Sync>>>
pub fn set_userdata( &self, userdata: Option<impl Any + Send + Sync>, ) -> Result<()>
pub fn config_delete_behavior( &self, config: &DeleteBehaviorConfig, ) -> Result<()>
pub fn current_time(&self) -> DoubleProperty<'_>
pub fn suggested_automation_time(&self) -> DoubleProperty<'_>
pub fn pause(&self) -> Result<()>
pub fn play(&self) -> Result<()>
Trait Implementations§
Source§impl Clone for StreamingGenerator
impl Clone for StreamingGenerator
Source§fn clone(&self) -> StreamingGenerator
fn clone(&self) -> StreamingGenerator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StreamingGenerator
impl Debug for StreamingGenerator
Source§impl From<&StreamingGenerator> for Generator
impl From<&StreamingGenerator> for Generator
Source§fn from(other: &StreamingGenerator) -> Generator
fn from(other: &StreamingGenerator) -> Generator
Converts to this type from the input type.
Source§impl From<&StreamingGenerator> for Handle
impl From<&StreamingGenerator> for Handle
Source§fn from(other: &StreamingGenerator) -> Handle
fn from(other: &StreamingGenerator) -> Handle
Converts to this type from the input type.
Source§impl From<StreamingGenerator> for Generator
impl From<StreamingGenerator> for Generator
Source§fn from(input: StreamingGenerator) -> Generator
fn from(input: StreamingGenerator) -> Generator
Converts to this type from the input type.
Source§impl From<StreamingGenerator> for Handle
impl From<StreamingGenerator> for Handle
Source§fn from(input: StreamingGenerator) -> Handle
fn from(input: StreamingGenerator) -> Handle
Converts to this type from the input type.
Source§impl Hash for StreamingGenerator
impl Hash for StreamingGenerator
Source§impl Ord for StreamingGenerator
impl Ord for StreamingGenerator
Source§fn cmp(&self, other: &StreamingGenerator) -> Ordering
fn cmp(&self, other: &StreamingGenerator) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StreamingGenerator
impl PartialEq for StreamingGenerator
Source§impl PartialOrd for StreamingGenerator
impl PartialOrd for StreamingGenerator
Source§impl TryFrom<&Generator> for StreamingGenerator
impl TryFrom<&Generator> for StreamingGenerator
Source§impl TryFrom<&Handle> for StreamingGenerator
impl TryFrom<&Handle> for StreamingGenerator
Source§impl TryFrom<Generator> for StreamingGenerator
impl TryFrom<Generator> for StreamingGenerator
Source§impl TryFrom<Handle> for StreamingGenerator
impl TryFrom<Handle> for StreamingGenerator
impl Eq for StreamingGenerator
impl StructuralPartialEq for StreamingGenerator
Auto Trait Implementations§
impl Freeze for StreamingGenerator
impl RefUnwindSafe for StreamingGenerator
impl Send for StreamingGenerator
impl Sync for StreamingGenerator
impl Unpin for StreamingGenerator
impl UnwindSafe for StreamingGenerator
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