pub struct Composition {
pub options: CompositionOptions,
pub tree: Tree<RenderSegment>,
}
Expand description
A composition output, including the tree of rendered segments, produced from
Composer::compose
.
Fields§
§options: CompositionOptions
The options used during this composition.
tree: Tree<RenderSegment>
The tree of rendered Segment
s produced during composition.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Composition
impl !RefUnwindSafe for Composition
impl !Send for Composition
impl !Sync for Composition
impl Unpin for Composition
impl !UnwindSafe for Composition
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