pub struct EditInfo {
pub width: usize,
pub height: usize,
pub fps: Rational32,
pub sample_rate: usize,
pub frame: usize,
pub layer: usize,
pub frame_max: usize,
pub layer_max: usize,
}Available on crate feature
generic only.Expand description
Fields§
§width: usizeシーンの幅。
height: usizeシーンの高さ。
fps: Rational32フレームレート。
sample_rate: usizeサンプルレート。
frame: usize現在のカーソルのフレーム番号。
layer: usize現在の選択レイヤー番号。
frame_max: usizeオブジェクトが存在する最大のフレーム番号。
layer_max: usizeオブジェクトが存在する最大のレイヤー番号。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EditInfo
impl RefUnwindSafe for EditInfo
impl Send for EditInfo
impl Sync for EditInfo
impl Unpin for EditInfo
impl UnwindSafe for EditInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more