pub struct LayerChunk {
pub chunk_id: u32,
pub layer_group_id: i32,
pub name: String,
pub layers: Vec<Layer>,
}
Fields§
§chunk_id: u32
§layer_group_id: i32
§name: String
§layers: Vec<Layer>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LayerChunk
impl RefUnwindSafe for LayerChunk
impl Send for LayerChunk
impl Sync for LayerChunk
impl Unpin for LayerChunk
impl UnwindSafe for LayerChunk
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