pub struct ContentPage {
pub index: usize,
pub width: f64,
pub height: f64,
pub blocks: Vec<ContentBlock>,
}Expand description
1ページ分の内容ビュー
Fields§
§index: usizepages 配列内の 0 始まり位置
width: f64§height: f64§blocks: Vec<ContentBlock>Trait Implementations§
Source§impl Clone for ContentPage
impl Clone for ContentPage
Source§fn clone(&self) -> ContentPage
fn clone(&self) -> ContentPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContentPage
impl Debug for ContentPage
Auto Trait Implementations§
impl Freeze for ContentPage
impl RefUnwindSafe for ContentPage
impl Send for ContentPage
impl Sync for ContentPage
impl Unpin for ContentPage
impl UnsafeUnpin for ContentPage
impl UnwindSafe for ContentPage
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