pub struct EntryFooter(/* private fields */);Expand description
A node in the changelog syntax tree.
Implementations§
Sourcepub fn email(&self) -> Option<String>
pub fn email(&self) -> Option<String>
Returns the email address of the maintainer from the footer.
Sourcepub fn maintainer(&self) -> Option<String>
pub fn maintainer(&self) -> Option<String>
Returns the maintainer name from the footer.
Sourcepub fn set_maintainer(&mut self, maintainer: String)
pub fn set_maintainer(&mut self, maintainer: String)
Set the maintainer for the entry.
Sourcepub fn set_timestamp(&mut self, timestamp: String)
pub fn set_timestamp(&mut self, timestamp: String)
Set timestamp for the entry.
Trait Implementations§
type Language = Lang
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode<Lang>) -> Option<Self>
fn syntax(&self) -> &SyntaxNode<Lang>
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§fn clone(&self) -> EntryFooter
fn clone(&self) -> EntryFooter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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