pub struct NumberingId {
pub value: isize,
}
Expand description
Numbering Id
use docx_rust::formatting::*;
let id = NumberingId::from(42isize);
Fields§
§value: isize
Trait Implementations§
Source§impl Clone for NumberingId
impl Clone for NumberingId
Source§fn clone(&self) -> NumberingId
fn clone(&self) -> NumberingId
Returns a copy 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 moreSource§impl Debug for NumberingId
impl Debug for NumberingId
Source§impl Default for NumberingId
impl Default for NumberingId
Source§fn default() -> NumberingId
fn default() -> NumberingId
Returns the “default value” for a type. Read more
Source§impl<'__input> XmlRead<'__input> for NumberingId
impl<'__input> XmlRead<'__input> for NumberingId
Auto Trait Implementations§
impl Freeze for NumberingId
impl RefUnwindSafe for NumberingId
impl Send for NumberingId
impl Sync for NumberingId
impl Unpin for NumberingId
impl UnwindSafe for NumberingId
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