[−][src]Struct obs_sys::obs_output_info
Fields
id: *const c_charflags: u32get_name: Option<unsafe extern "C" fn(type_data: *mut c_void) -> *const c_char>create: Option<unsafe extern "C" fn(settings: *mut obs_data_t, output: *mut obs_output_t) -> *mut c_void>destroy: Option<unsafe extern "C" fn(data: *mut c_void)>start: Option<unsafe extern "C" fn(data: *mut c_void) -> bool>stop: Option<unsafe extern "C" fn(data: *mut c_void, ts: u64)>raw_video: Option<unsafe extern "C" fn(data: *mut c_void, frame: *mut video_data)>raw_audio: Option<unsafe extern "C" fn(data: *mut c_void, frames: *mut audio_data)>encoded_packet: Option<unsafe extern "C" fn(data: *mut c_void, packet: *mut encoder_packet)>update: Option<unsafe extern "C" fn(data: *mut c_void, settings: *mut obs_data_t)>get_defaults: Option<unsafe extern "C" fn(settings: *mut obs_data_t)>get_properties: Option<unsafe extern "C" fn(data: *mut c_void) -> *mut obs_properties_t>unused1: Option<unsafe extern "C" fn(data: *mut c_void)>get_total_bytes: Option<unsafe extern "C" fn(data: *mut c_void) -> u64>get_dropped_frames: Option<unsafe extern "C" fn(data: *mut c_void) -> c_int>type_data: *mut c_voidfree_type_data: Option<unsafe extern "C" fn(type_data: *mut c_void)>get_congestion: Option<unsafe extern "C" fn(data: *mut c_void) -> f32>get_connect_time_ms: Option<unsafe extern "C" fn(data: *mut c_void) -> c_int>encoded_video_codecs: *const c_charencoded_audio_codecs: *const c_charraw_audio2: Option<unsafe extern "C" fn(data: *mut c_void, idx: size_t, frames: *mut audio_data)>Trait Implementations
impl Clone for obs_output_info[src]
fn clone(&self) -> obs_output_info[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for obs_output_info[src]
impl Debug for obs_output_info[src]
impl Default for obs_output_info[src]
Auto Trait Implementations
impl RefUnwindSafe for obs_output_info
impl !Send for obs_output_info
impl !Sync for obs_output_info
impl Unpin for obs_output_info
impl UnwindSafe for obs_output_info
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,