pub struct DeprecationCommit {
pub sha: String,
pub component: String,
}Expand description
A commit that added files to a deprecated component directory.
Fields§
§sha: StringShort commit SHA.
component: StringThe deprecated component name extracted from the path
(e.g., “Tile” from deprecated/components/Tile/Tile.tsx).
Trait Implementations§
Source§impl Clone for DeprecationCommit
impl Clone for DeprecationCommit
Source§fn clone(&self) -> DeprecationCommit
fn clone(&self) -> DeprecationCommit
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DeprecationCommit
impl RefUnwindSafe for DeprecationCommit
impl Send for DeprecationCommit
impl Sync for DeprecationCommit
impl Unpin for DeprecationCommit
impl UnsafeUnpin for DeprecationCommit
impl UnwindSafe for DeprecationCommit
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