Skip to content

Commit 9257f5a

Browse files
committed
Auto merge of #94530 - tmiasko:alignment-impls, r=dtolnay
Implement Copy, Clone, PartialEq and Eq for core::fmt::Alignment Alignment is a fieldless exhaustive enum, so it is already possible to clone and compare it by matching, but it is inconvenient to do so. For example, if one would like to create a struct describing a formatter configuration and provide a clone implementation: ```rust pub struct Format { fill: char, width: Option<usize>, align: fmt::Alignment, } impl Clone for Format { fn clone(&self) -> Self { Format { align: match self.align { fmt::Alignment::Left => fmt::Alignment::Left, fmt::Alignment::Right => fmt::Alignment::Right, fmt::Alignment::Center => fmt::Alignment::Center, }, .. *self } } } ``` Derive Copy, Clone, PartialEq, and Eq for Alignment for convenience.
2 parents bb4781a + a8acfa8 commit 9257f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ mod num;
2121
#[stable(feature = "fmt_flags_align", since = "1.28.0")]
2222
#[cfg_attr(not(test), rustc_diagnostic_item = "Alignment")]
2323
/// Possible alignments returned by `Formatter::align`
24-
#[derive(Debug)]
24+
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
2525
pub enum Alignment {
2626
#[stable(feature = "fmt_flags_align", since = "1.28.0")]
2727
/// Indication that contents should be left-aligned.

0 commit comments

Comments
 (0)