pub struct HellmanOutput(/* private fields */);Expand description
Helper for the following requirements for output:
- Any stdout output line with a required result must have OUTPUT as the first word (token).
- All numerical values required by an assignment must have whitespace (which includes end of line) around them.
- Required textual output should be surrounded by single colons (:).
- The order for results is assignment specific and important, they must emanate from the application in the order dictated by the assignment.
Implementations§
Source§impl HellmanOutput
impl HellmanOutput
Trait Implementations§
Source§impl Clone for HellmanOutput
impl Clone for HellmanOutput
Source§fn clone(&self) -> HellmanOutput
fn clone(&self) -> HellmanOutput
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 Default for HellmanOutput
impl Default for HellmanOutput
Source§impl Display for HellmanOutput
impl Display for HellmanOutput
Source§impl FromStr for HellmanOutput
impl FromStr for HellmanOutput
Source§impl Ord for HellmanOutput
impl Ord for HellmanOutput
Source§fn cmp(&self, other: &HellmanOutput) -> Ordering
fn cmp(&self, other: &HellmanOutput) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HellmanOutput
impl PartialEq for HellmanOutput
Source§impl PartialOrd for HellmanOutput
impl PartialOrd for HellmanOutput
impl Eq for HellmanOutput
impl StructuralPartialEq for HellmanOutput
Auto Trait Implementations§
impl Freeze for HellmanOutput
impl RefUnwindSafe for HellmanOutput
impl Send for HellmanOutput
impl Sync for HellmanOutput
impl Unpin for HellmanOutput
impl UnwindSafe for HellmanOutput
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