pub struct BulletPoint<E: Element> { /* private fields */ }Expand description
A bullet point in a list.
This is a helper element for the OrderedList and UnorderedList types, but you can
also use it directly if you have special requirements.
§Example
use genpdf::elements;
let layout = elements::LinearLayout::vertical()
.element(elements::BulletPoint::new(elements::Paragraph::new("first"))
.with_bullet("a)"))
.element(elements::BulletPoint::new(elements::Paragraph::new("second"))
.with_bullet("b)"));Implementations§
Source§impl<E: Element> BulletPoint<E>
impl<E: Element> BulletPoint<E>
Sourcepub fn new(element: E) -> BulletPoint<E>
pub fn new(element: E) -> BulletPoint<E>
Creates a new bullet point with the given element.
Sourcepub fn set_bullet(&mut self, bullet: impl Into<String>)
pub fn set_bullet(&mut self, bullet: impl Into<String>)
Sets the bullet point symbol for this bullet point.
Sourcepub fn with_bullet(self, bullet: impl Into<String>) -> Self
pub fn with_bullet(self, bullet: impl Into<String>) -> Self
Sets the bullet point symbol for this bullet point and returns the bullet point.
Trait Implementations§
Source§impl<E: Element> Element for BulletPoint<E>
impl<E: Element> Element for BulletPoint<E>
Source§fn render(
&mut self,
context: &Context,
area: Area<'_>,
style: Style,
) -> Result<RenderResult, Error>
fn render( &mut self, context: &Context, area: Area<'_>, style: Style, ) -> Result<RenderResult, Error>
Renders this element to the given area using the given style and font cache. Read more
Source§fn framed(self) -> FramedElement<Self>where
Self: Sized,
fn framed(self) -> FramedElement<Self>where
Self: Sized,
Draws a frame around this element.
Auto Trait Implementations§
impl<E> Freeze for BulletPoint<E>where
E: Freeze,
impl<E> RefUnwindSafe for BulletPoint<E>where
E: RefUnwindSafe,
impl<E> Send for BulletPoint<E>where
E: Send,
impl<E> Sync for BulletPoint<E>where
E: Sync,
impl<E> Unpin for BulletPoint<E>where
E: Unpin,
impl<E> UnsafeUnpin for BulletPoint<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for BulletPoint<E>where
E: UnwindSafe,
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