pub struct KeyCode {
pub film_manufacturer_code: i32,
pub film_type: i32,
pub film_roll_prefix: i32,
pub count: i32,
pub perforation_offset: i32,
pub perforations_per_frame: i32,
pub perforations_per_count: i32,
}Expand description
Uniquely identifies a motion picture film frame.
Fields§
§film_manufacturer_code: i32Identifies a film manufacturer.
film_type: i32Identifies a film type.
film_roll_prefix: i32Specifies the film roll prefix.
count: i32Specifies the film count.
perforation_offset: i32Specifies the perforation offset.
perforations_per_frame: i32Specifies the perforation count of each single frame.
perforations_per_count: i32Specifies the perforation count of each single film.
Implementations§
Trait Implementations§
impl Copy for KeyCode
impl Eq for KeyCode
impl StructuralPartialEq for KeyCode
Auto Trait Implementations§
impl Freeze for KeyCode
impl RefUnwindSafe for KeyCode
impl Send for KeyCode
impl Sync for KeyCode
impl Unpin for KeyCode
impl UnwindSafe for KeyCode
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