#[repr(C)]pub struct burn_multi_caps {Show 14 fields
pub multi_session: c_int,
pub multi_track: c_int,
pub start_adr: c_int,
pub start_alignment: off_t,
pub start_range_low: off_t,
pub start_range_high: off_t,
pub might_do_tao: c_int,
pub might_do_sao: c_int,
pub might_do_raw: c_int,
pub advised_write_mode: burn_write_types,
pub selected_write_mode: burn_write_types,
pub current_profile: c_int,
pub current_is_cd_profile: c_int,
pub might_simulate: c_int,
}Expand description
The reply structure for burn_disc_get_multi_caps()
Fields§
§multi_session: c_int§multi_track: c_int§start_adr: c_int§start_alignment: off_tThe alignment for start addresses. ( start_address % start_alignment ) must be 0.
start_range_low: off_tThe lowest permissible start address.
start_range_high: off_tThe highest addressable start address.
might_do_tao: c_intPotential availability of write modes 4= needs no size prediction, not to be chosen automatically 3= needs size prediction, not to be chosen automatically 2= available, no size prediction necessary 1= available, needs exact size prediction 0= not available With CD media (profiles 0x09 and 0x0a) check also the elements _block_types of the according write mode.
might_do_sao: c_int§might_do_raw: c_int§advised_write_mode: burn_write_typesGenerally advised write mode. Not necessarily the one chosen by burn_write_opts_auto_write_type() because the burn_disc structure might impose particular demands.
selected_write_mode: burn_write_typesWrite mode as given by parameter wt of burn_disc_get_multi_caps().
current_profile: c_intProfile number which was current when the reply was generated
current_is_cd_profile: c_intWhether the current profile indicates CD media. 1=yes, 0=no
might_simulate: c_intWhether the current profile is able to perform simulated write
Trait Implementations§
Source§impl Clone for burn_multi_caps
impl Clone for burn_multi_caps
Source§fn clone(&self) -> burn_multi_caps
fn clone(&self) -> burn_multi_caps
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more