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: i32
Identifies a film manufacturer.
film_type: i32
Identifies a film type.
film_roll_prefix: i32
Specifies the film roll prefix.
count: i32
Specifies the film count.
perforation_offset: i32
Specifies the perforation offset.
perforations_per_frame: i32
Specifies the perforation count of each single frame.
perforations_per_count: i32
Specifies the perforation count of each single film.
Implementations
Trait Implementations
impl Copy for KeyCode
impl Eq for KeyCode
impl StructuralEq for KeyCode
impl StructuralPartialEq for KeyCode
Auto Trait Implementations
impl RefUnwindSafe for KeyCode
impl Send for KeyCode
impl Sync for KeyCode
impl Unpin for KeyCode
impl UnwindSafe for KeyCode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more