pub enum LongOutput {
Default,
Truncated,
}Expand description
Long output mode for changelist descriptions shared by commands such as
p4 changes and p4 filelog.
By default, only the first 30 (or 31) characters of the description are shown.
Variants§
Default
Show the full text of each changelist description (-l).
Truncated
Show the full text truncated at 250 characters (-L).
Implementations§
Trait Implementations§
Source§impl Clone for LongOutput
impl Clone for LongOutput
impl Copy for LongOutput
Source§impl Debug for LongOutput
impl Debug for LongOutput
impl Eq for LongOutput
Source§impl PartialEq for LongOutput
impl PartialEq for LongOutput
impl StructuralPartialEq for LongOutput
Auto Trait Implementations§
impl Freeze for LongOutput
impl RefUnwindSafe for LongOutput
impl Send for LongOutput
impl Sync for LongOutput
impl Unpin for LongOutput
impl UnsafeUnpin for LongOutput
impl UnwindSafe for LongOutput
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