1.29.0 -> 1.30.0
This commit is contained in:
parent
2cab0deb97
commit
d48a649a17
@ -502,7 +502,7 @@ fn mul(self, rhs: u32) -> Duration {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl Mul<Duration> for u32 {
|
||||
type Output = Duration;
|
||||
|
||||
@ -511,7 +511,7 @@ fn mul(self, rhs: Duration) -> Duration {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl Mul<f64> for Duration {
|
||||
type Output = Duration;
|
||||
|
||||
@ -535,7 +535,7 @@ fn mul(self, rhs: f64) -> Duration {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl Mul<Duration> for f64 {
|
||||
type Output = Duration;
|
||||
|
||||
@ -551,7 +551,7 @@ fn mul_assign(&mut self, rhs: u32) {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl MulAssign<f64> for Duration {
|
||||
fn mul_assign(&mut self, rhs: f64) {
|
||||
*self = *self * rhs;
|
||||
@ -567,7 +567,7 @@ fn div(self, rhs: u32) -> Duration {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl Div<f64> for Duration {
|
||||
type Output = Duration;
|
||||
|
||||
@ -591,7 +591,7 @@ fn div(self, rhs: f64) -> Duration {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl Div<Duration> for Duration {
|
||||
type Output = f64;
|
||||
|
||||
@ -610,7 +610,7 @@ fn div_assign(&mut self, rhs: u32) {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.29.0")]
|
||||
#[stable(feature = "duration_mul_div_extras", since = "1.30.0")]
|
||||
impl DivAssign<f64> for Duration {
|
||||
fn div_assign(&mut self, rhs: f64) {
|
||||
*self = *self / rhs;
|
||||
|
Loading…
Reference in New Issue
Block a user