pub struct ReleaseInput {
pub dry_run: bool,
pub convert_inherited: bool,
pub no_commit: bool,
pub no_tags: bool,
pub keep_changesets: bool,
pub force: bool,
pub per_package_config: HashMap<String, PackageReleaseConfig>,
pub global_prerelease: Option<PrereleaseSpec>,
pub graduate_all: bool,
}Fields§
§dry_run: bool§convert_inherited: bool§no_commit: bool§keep_changesets: bool§force: bool§per_package_config: HashMap<String, PackageReleaseConfig>Per-package release configuration from CLI (merged with TOML state at execution).
global_prerelease: Option<PrereleaseSpec>Global prerelease tag (applies to all packages without specific config).
graduate_all: boolWhether --graduate was passed without specific crates (single-package mode).
Auto Trait Implementations§
impl Freeze for ReleaseInput
impl RefUnwindSafe for ReleaseInput
impl Send for ReleaseInput
impl Sync for ReleaseInput
impl Unpin for ReleaseInput
impl UnsafeUnpin for ReleaseInput
impl UnwindSafe for ReleaseInput
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more