pub enum TextIcon {
Comment,
Key,
Note,
Help,
NewParagraph,
Paragraph,
Insert,
}Expand description
Standard icon names for /Text (sticky-note) annotations per
ISO 32000-2 §12.5.6.4 Table 180.
The icon is the small graphic that the viewer renders on the page;
clicking it opens the popup note containing the annotation’s
/Contents text.
Variants§
Comment
Speech-bubble icon — the most common “this is a comment” icon.
Key
Key icon — typically used to flag access-control or authentication notes.
Note
Generic note-paper icon.
Help
Question-mark / help icon for clarification requests.
NewParagraph
New-paragraph icon (¶ with a plus) for editorial markup.
Paragraph
Paragraph icon (¶) for editorial markup.
Insert
Caret/insert icon for indicating insertion points in editorial review.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextIcon
impl RefUnwindSafe for TextIcon
impl Send for TextIcon
impl Sync for TextIcon
impl Unpin for TextIcon
impl UnsafeUnpin for TextIcon
impl UnwindSafe for TextIcon
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