pub struct CustomTabStop {
pub tab_stop_type: Option<TabStopType>,
pub leader: Option<TabLeaderCharacter>,
pub pos: Option<isize>,
}
Fields§
§tab_stop_type: Option<TabStopType>
§leader: Option<TabLeaderCharacter>
§pos: Option<isize>
Implementations§
Source§impl CustomTabStop
impl CustomTabStop
pub fn tab_stop_type<T: Into<TabStopType>>(self, value: T) -> Self
pub fn leader<T: Into<TabLeaderCharacter>>(self, value: T) -> Self
pub fn pos<T: Into<isize>>(self, value: T) -> Self
Trait Implementations§
Source§impl Clone for CustomTabStop
impl Clone for CustomTabStop
Source§fn clone(&self) -> CustomTabStop
fn clone(&self) -> CustomTabStop
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 CustomTabStop
impl Debug for CustomTabStop
Source§impl Default for CustomTabStop
impl Default for CustomTabStop
Source§fn default() -> CustomTabStop
fn default() -> CustomTabStop
Returns the “default value” for a type. Read more
Source§impl<'__input> XmlRead<'__input> for CustomTabStop
impl<'__input> XmlRead<'__input> for CustomTabStop
Auto Trait Implementations§
impl Freeze for CustomTabStop
impl RefUnwindSafe for CustomTabStop
impl Send for CustomTabStop
impl Sync for CustomTabStop
impl Unpin for CustomTabStop
impl UnwindSafe for CustomTabStop
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