Trait gclient::ext::sp_core::sp_std::ops::Sub

1.0.0 · source ·
pub trait Sub<Rhs = Self> {
    type Output;

    // Required method
    fn sub(self, rhs: Rhs) -> Self::Output;
}
Expand description

The subtraction operator -.

Note that Rhs is Self by default, but this is not mandatory. For example, std::time::SystemTime implements Sub<Duration>, which permits operations of the form SystemTime = SystemTime - Duration.

§Examples

§Subtractable points

use std::ops::Sub;

#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
    x: i32,
    y: i32,
}

impl Sub for Point {
    type Output = Self;

    fn sub(self, other: Self) -> Self::Output {
        Self {
            x: self.x - other.x,
            y: self.y - other.y,
        }
    }
}

assert_eq!(Point { x: 3, y: 3 } - Point { x: 2, y: 3 },
           Point { x: 1, y: 0 });

§Implementing Sub with generics

Here is an example of the same Point struct implementing the Sub trait using generics.

use std::ops::Sub;

#[derive(Debug, PartialEq)]
struct Point<T> {
    x: T,
    y: T,
}

// Notice that the implementation uses the associated type `Output`.
impl<T: Sub<Output = T>> Sub for Point<T> {
    type Output = Self;

    fn sub(self, other: Self) -> Self::Output {
        Point {
            x: self.x - other.x,
            y: self.y - other.y,
        }
    }
}

assert_eq!(Point { x: 2, y: 3 } - Point { x: 1, y: 0 },
           Point { x: 1, y: 3 });

Required Associated Types§

source

type Output

The resulting type after applying the - operator.

Required Methods§

source

fn sub(self, rhs: Rhs) -> Self::Output

Performs the - operation.

§Example
assert_eq!(12 - 1, 11);

Implementors§

source§

impl Sub for f32

§

type Output = f32

source§

impl Sub for f64

§

type Output = f64

source§

impl Sub for i8

§

type Output = i8

source§

impl Sub for i16

§

type Output = i16

source§

impl Sub for i32

§

type Output = i32

source§

impl Sub for i64

§

type Output = i64

source§

impl Sub for i128

§

type Output = i128

source§

impl Sub for isize

source§

impl Sub for u8

§

type Output = u8

source§

impl Sub for u16

§

type Output = u16

source§

impl Sub for u32

§

type Output = u32

source§

impl Sub for u64

§

type Output = u64

source§

impl Sub for u128

§

type Output = u128

source§

impl Sub for usize

§

impl Sub for gclient::ext::sp_runtime::biguint::BigUint

§

impl Sub for Capabilities

1.3.0 · source§

impl Sub for Duration

1.8.0 · source§

impl Sub for gclient::ext::sp_runtime::scale_info::prelude::time::Instant

§

impl Sub for FixedI64

§

impl Sub for FixedI128

§

impl Sub for FixedU64

§

impl Sub for FixedU128

§

impl Sub for PerU16

§

impl Sub for Perbill

§

impl Sub for Percent

§

impl Sub for Permill

§

impl Sub for Perquintill

source§

impl Sub for Assume

1.74.0 · source§

impl Sub for Saturating<i8>

1.74.0 · source§

impl Sub for Saturating<i16>

1.74.0 · source§

impl Sub for Saturating<i32>

1.74.0 · source§

impl Sub for Saturating<i64>

1.74.0 · source§

impl Sub for Saturating<i128>

1.74.0 · source§

impl Sub for Saturating<isize>

1.74.0 · source§

impl Sub for Saturating<u8>

1.74.0 · source§

impl Sub for Saturating<u16>

1.74.0 · source§

impl Sub for Saturating<u32>

1.74.0 · source§

impl Sub for Saturating<u64>

1.74.0 · source§

impl Sub for Saturating<u128>

1.74.0 · source§

impl Sub for Saturating<usize>

source§

impl Sub for Wrapping<i8>

source§

impl Sub for Wrapping<i16>

source§

impl Sub for Wrapping<i32>

source§

impl Sub for Wrapping<i64>

source§

impl Sub for Wrapping<i128>

source§

impl Sub for Wrapping<isize>

source§

impl Sub for Wrapping<u8>

source§

impl Sub for Wrapping<u16>

source§

impl Sub for Wrapping<u32>

source§

impl Sub for Wrapping<u64>

source§

impl Sub for Wrapping<u128>

source§

impl Sub for Wrapping<usize>

source§

impl Sub for NaiveDate

Subtracts another NaiveDate from the current date. Returns a TimeDelta of integral numbers.

This does not overflow or underflow at all, as all possible output fits in the range of TimeDelta.

The implementation is a wrapper around NaiveDate::signed_duration_since.

§Example

use chrono::{NaiveDate, TimeDelta};

let from_ymd = |y, m, d| NaiveDate::from_ymd_opt(y, m, d).unwrap();

assert_eq!(from_ymd(2014, 1, 1) - from_ymd(2014, 1, 1), TimeDelta::zero());
assert_eq!(from_ymd(2014, 1, 1) - from_ymd(2013, 12, 31), TimeDelta::try_days(1).unwrap());
assert_eq!(from_ymd(2014, 1, 1) - from_ymd(2014, 1, 2), TimeDelta::try_days(-1).unwrap());
assert_eq!(from_ymd(2014, 1, 1) - from_ymd(2013, 9, 23), TimeDelta::try_days(100).unwrap());
assert_eq!(from_ymd(2014, 1, 1) - from_ymd(2013, 1, 1), TimeDelta::try_days(365).unwrap());
assert_eq!(
    from_ymd(2014, 1, 1) - from_ymd(2010, 1, 1),
    TimeDelta::try_days(365 * 4 + 1).unwrap()
);
assert_eq!(
    from_ymd(2014, 1, 1) - from_ymd(1614, 1, 1),
    TimeDelta::try_days(365 * 400 + 97).unwrap()
);
source§

impl Sub for NaiveDateTime

Subtracts another NaiveDateTime from the current date and time. This does not overflow or underflow at all.

As a part of Chrono’s leap second handling, the subtraction assumes that there is no leap second ever, except when any of the NaiveDateTimes themselves represents a leap second in which case the assumption becomes that there are exactly one (or two) leap second(s) ever.

The implementation is a wrapper around NaiveDateTime::signed_duration_since.

§Example

use chrono::{NaiveDate, TimeDelta};

let from_ymd = |y, m, d| NaiveDate::from_ymd_opt(y, m, d).unwrap();

let d = from_ymd(2016, 7, 8);
assert_eq!(
    d.and_hms_opt(3, 5, 7).unwrap() - d.and_hms_opt(2, 4, 6).unwrap(),
    TimeDelta::try_seconds(3600 + 60 + 1).unwrap()
);

// July 8 is 190th day in the year 2016
let d0 = from_ymd(2016, 1, 1);
assert_eq!(
    d.and_hms_milli_opt(0, 7, 6, 500).unwrap() - d0.and_hms_opt(0, 0, 0).unwrap(),
    TimeDelta::try_seconds(189 * 86_400 + 7 * 60 + 6).unwrap()
        + TimeDelta::try_milliseconds(500).unwrap()
);

Leap seconds are handled, but the subtraction assumes that no other leap seconds happened.

let leap = from_ymd(2015, 6, 30).and_hms_milli_opt(23, 59, 59, 1_500).unwrap();
assert_eq!(
    leap - from_ymd(2015, 6, 30).and_hms_opt(23, 0, 0).unwrap(),
    TimeDelta::try_seconds(3600).unwrap() + TimeDelta::try_milliseconds(500).unwrap()
);
assert_eq!(
    from_ymd(2015, 7, 1).and_hms_opt(1, 0, 0).unwrap() - leap,
    TimeDelta::try_seconds(3600).unwrap() - TimeDelta::try_milliseconds(500).unwrap()
);
source§

impl Sub for NaiveTime

Subtracts another NaiveTime from the current time. Returns a TimeDelta within +/- 1 day. This does not overflow or underflow at all.

As a part of Chrono’s leap second handling, the subtraction assumes that there is no leap second ever, except when any of the NaiveTimes themselves represents a leap second in which case the assumption becomes that there are exactly one (or two) leap second(s) ever.

The implementation is a wrapper around NaiveTime::signed_duration_since.

§Example

use chrono::{NaiveTime, TimeDelta};

let from_hmsm = |h, m, s, milli| NaiveTime::from_hms_milli_opt(h, m, s, milli).unwrap();

assert_eq!(from_hmsm(3, 5, 7, 900) - from_hmsm(3, 5, 7, 900), TimeDelta::zero());
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(3, 5, 7, 875),
    TimeDelta::try_milliseconds(25).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(3, 5, 6, 925),
    TimeDelta::try_milliseconds(975).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(3, 5, 0, 900),
    TimeDelta::try_seconds(7).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(3, 0, 7, 900),
    TimeDelta::try_seconds(5 * 60).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(0, 5, 7, 900),
    TimeDelta::try_seconds(3 * 3600).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(4, 5, 7, 900),
    TimeDelta::try_seconds(-3600).unwrap()
);
assert_eq!(
    from_hmsm(3, 5, 7, 900) - from_hmsm(2, 4, 6, 800),
    TimeDelta::try_seconds(3600 + 60 + 1).unwrap() + TimeDelta::try_milliseconds(100).unwrap()
);

Leap seconds are handled, but the subtraction assumes that there were no other leap seconds happened.

assert_eq!(from_hmsm(3, 0, 59, 1_000) - from_hmsm(3, 0, 59, 0), TimeDelta::try_seconds(1).unwrap());
assert_eq!(from_hmsm(3, 0, 59, 1_500) - from_hmsm(3, 0, 59, 0),
           TimeDelta::try_milliseconds(1500).unwrap());
assert_eq!(from_hmsm(3, 0, 59, 1_000) - from_hmsm(3, 0, 0, 0), TimeDelta::try_seconds(60).unwrap());
assert_eq!(from_hmsm(3, 0, 0, 0) - from_hmsm(2, 59, 59, 1_000), TimeDelta::try_seconds(1).unwrap());
assert_eq!(from_hmsm(3, 0, 59, 1_000) - from_hmsm(2, 59, 59, 1_000),
           TimeDelta::try_seconds(61).unwrap());
source§

impl Sub for TimeDelta

source§

impl Sub for curve25519_dalek::edwards::EdwardsPoint

source§

impl Sub for curve25519_dalek::ristretto::RistrettoPoint

source§

impl Sub for curve25519_dalek::scalar::Scalar

source§

impl Sub for curve25519_dalek::edwards::EdwardsPoint

source§

impl Sub for curve25519_dalek::ristretto::RistrettoPoint

source§

impl Sub for curve25519_dalek::scalar::Scalar

source§

impl Sub for BigInt

source§

impl Sub for num_bigint::biguint::BigUint

source§

impl Sub for ATerm

source§

impl Sub for Z0

Z0 - Z0 = Z0

§

type Output = Z0

source§

impl Sub for UTerm

UTerm - UTerm = UTerm

§

impl Sub for Access

§

type Output = Access

§

impl Sub for Access

§

type Output = Access

§

impl Sub for AtFlags

§

type Output = AtFlags

§

impl Sub for AtFlags

§

type Output = AtFlags

§

impl Sub for ControlModes

§

type Output = ControlModes

§

impl Sub for CreateFlags

§

type Output = CreateFlags

§

impl Sub for CreateFlags

§

type Output = CreateFlags

§

impl Sub for CreateFlags

§

type Output = CreateFlags

§

impl Sub for CreateFlags

§

type Output = CreateFlags

§

impl Sub for DupFlags

§

type Output = DupFlags

§

impl Sub for DupFlags

§

type Output = DupFlags

§

impl Sub for DupFlags

§

type Output = DupFlags

§

impl Sub for EdwardsPoint

§

type Output = EdwardsPoint

§

impl Sub for EventFlags

§

type Output = EventFlags

§

impl Sub for EventFlags

§

type Output = EventFlags

§

impl Sub for EventfdFlags

§

type Output = EventfdFlags

§

impl Sub for EventfdFlags

§

type Output = EventfdFlags

§

impl Sub for FallocateFlags

§

type Output = FallocateFlags

§

impl Sub for FallocateFlags

§

type Output = FallocateFlags

§

impl Sub for FdFlags

§

type Output = FdFlags

§

impl Sub for FdFlags

§

type Output = FdFlags

§

impl Sub for FdFlags

§

type Output = FdFlags

§

impl Sub for IFlags

§

type Output = IFlags

§

impl Sub for InputModes

§

type Output = InputModes

§

impl Sub for Instant

§

impl Sub for LocalModes

§

type Output = LocalModes

§

impl Sub for MapFlags

§

type Output = MapFlags

§

impl Sub for MemfdFlags

§

type Output = MemfdFlags

§

impl Sub for MemfdFlags

§

type Output = MemfdFlags

§

impl Sub for MlockFlags

§

type Output = MlockFlags

§

impl Sub for Mode

§

type Output = Mode

§

impl Sub for Mode

§

type Output = Mode

§

impl Sub for MountFlags

§

type Output = MountFlags

§

impl Sub for MountFlags

§

type Output = MountFlags

§

impl Sub for MountPropagationFlags

§

type Output = MountPropagationFlags

§

impl Sub for MountPropagationFlags

§

type Output = MountPropagationFlags

§

impl Sub for MprotectFlags

§

type Output = MprotectFlags

§

impl Sub for MremapFlags

§

type Output = MremapFlags

§

impl Sub for MsyncFlags

§

type Output = MsyncFlags

§

impl Sub for OFlags

§

type Output = OFlags

§

impl Sub for OFlags

§

type Output = OFlags

§

impl Sub for OutputModes

§

type Output = OutputModes

§

impl Sub for PipeFlags

§

type Output = PipeFlags

§

impl Sub for PipeFlags

§

type Output = PipeFlags

§

impl Sub for PollFlags

§

type Output = PollFlags

§

impl Sub for PollFlags

§

type Output = PollFlags

§

impl Sub for ProtFlags

§

type Output = ProtFlags

§

impl Sub for Protection

§

type Output = Protection

§

impl Sub for ReadWriteFlags

§

type Output = ReadWriteFlags

§

impl Sub for ReadWriteFlags

§

type Output = ReadWriteFlags

§

impl Sub for ReadWriteFlags

§

type Output = ReadWriteFlags

§

impl Sub for Ready

§

type Output = Ready

§

impl Sub for RenameFlags

§

type Output = RenameFlags

§

impl Sub for RenameFlags

§

type Output = RenameFlags

§

impl Sub for ResolveFlags

§

type Output = ResolveFlags

§

impl Sub for ResolveFlags

§

type Output = ResolveFlags

§

impl Sub for RistrettoPoint

§

type Output = RistrettoPoint

§

impl Sub for Scalar

§

type Output = Scalar

§

impl Sub for SealFlags

§

type Output = SealFlags

§

impl Sub for SealFlags

§

type Output = SealFlags

§

impl Sub for SpliceFlags

§

type Output = SpliceFlags

§

impl Sub for SpliceFlags

§

type Output = SpliceFlags

§

impl Sub for StatVfsMountFlags

§

type Output = StatVfsMountFlags

§

impl Sub for StatVfsMountFlags

§

type Output = StatVfsMountFlags

§

impl Sub for StatxFlags

§

type Output = StatxFlags

§

impl Sub for StatxFlags

§

type Output = StatxFlags

§

impl Sub for UnmountFlags

§

type Output = UnmountFlags

§

impl Sub for UnmountFlags

§

type Output = UnmountFlags

§

impl Sub for UserfaultfdFlags

§

type Output = UserfaultfdFlags

§

impl Sub for WatchFlags

§

type Output = WatchFlags

§

impl Sub for WatchFlags

§

type Output = WatchFlags

§

impl Sub for Weight

§

type Output = Weight

§

impl Sub for XattrFlags

§

type Output = XattrFlags

§

impl Sub for XattrFlags

§

type Output = XattrFlags

§

impl Sub for u32x4

§

type Output = u32x4

source§

impl Sub<&f32> for &f32

§

type Output = <f32 as Sub>::Output

source§

impl Sub<&f32> for f32

§

type Output = <f32 as Sub>::Output

source§

impl Sub<&f64> for &f64

§

type Output = <f64 as Sub>::Output

source§

impl Sub<&f64> for f64

§

type Output = <f64 as Sub>::Output

source§

impl Sub<&i8> for &i8

§

type Output = <i8 as Sub>::Output

source§

impl Sub<&i8> for &BigInt

source§

impl Sub<&i8> for i8

§

type Output = <i8 as Sub>::Output

source§

impl Sub<&i8> for BigInt

source§

impl Sub<&i16> for &i16

§

type Output = <i16 as Sub>::Output

source§

impl Sub<&i16> for &BigInt

source§

impl Sub<&i16> for i16

§

type Output = <i16 as Sub>::Output

source§

impl Sub<&i16> for BigInt

source§

impl Sub<&i32> for &i32

§

type Output = <i32 as Sub>::Output

source§

impl Sub<&i32> for &BigInt

source§

impl Sub<&i32> for i32

§

type Output = <i32 as Sub>::Output

source§

impl Sub<&i32> for BigInt

source§

impl Sub<&i64> for &i64

§

type Output = <i64 as Sub>::Output

source§

impl Sub<&i64> for &BigInt

source§

impl Sub<&i64> for i64

§

type Output = <i64 as Sub>::Output

source§

impl Sub<&i64> for BigInt

source§

impl Sub<&i128> for &i128

§

type Output = <i128 as Sub>::Output

source§

impl Sub<&i128> for &BigInt

source§

impl Sub<&i128> for i128

§

type Output = <i128 as Sub>::Output

source§

impl Sub<&i128> for BigInt

source§

impl Sub<&isize> for &isize

§

type Output = <isize as Sub>::Output

source§

impl Sub<&isize> for &BigInt

source§

impl Sub<&isize> for isize

§

type Output = <isize as Sub>::Output

source§

impl Sub<&isize> for BigInt

source§

impl Sub<&u8> for &u8

§

type Output = <u8 as Sub>::Output

source§

impl Sub<&u8> for &BigInt

source§

impl Sub<&u8> for &num_bigint::biguint::BigUint

source§

impl Sub<&u8> for u8

§

type Output = <u8 as Sub>::Output

source§

impl Sub<&u8> for BigInt

source§

impl Sub<&u8> for num_bigint::biguint::BigUint

source§

impl Sub<&u16> for &u16

§

type Output = <u16 as Sub>::Output

source§

impl Sub<&u16> for &BigInt

source§

impl Sub<&u16> for &num_bigint::biguint::BigUint

source§

impl Sub<&u16> for u16

§

type Output = <u16 as Sub>::Output

source§

impl Sub<&u16> for BigInt

source§

impl Sub<&u16> for num_bigint::biguint::BigUint

source§

impl Sub<&u32> for &u32

§

type Output = <u32 as Sub>::Output

source§

impl Sub<&u32> for &BigInt

source§

impl Sub<&u32> for &num_bigint::biguint::BigUint

source§

impl Sub<&u32> for u32

§

type Output = <u32 as Sub>::Output

source§

impl Sub<&u32> for BigInt

source§

impl Sub<&u32> for num_bigint::biguint::BigUint

source§

impl Sub<&u64> for &u64

§

type Output = <u64 as Sub>::Output

source§

impl Sub<&u64> for &BigInt

source§

impl Sub<&u64> for &num_bigint::biguint::BigUint

source§

impl Sub<&u64> for u64

§

type Output = <u64 as Sub>::Output

source§

impl Sub<&u64> for BigInt

source§

impl Sub<&u64> for num_bigint::biguint::BigUint

source§

impl Sub<&u128> for &u128

§

type Output = <u128 as Sub>::Output

source§

impl Sub<&u128> for &BigInt

source§

impl Sub<&u128> for &num_bigint::biguint::BigUint

source§

impl Sub<&u128> for u128

§

type Output = <u128 as Sub>::Output

source§

impl Sub<&u128> for BigInt

source§

impl Sub<&u128> for num_bigint::biguint::BigUint

source§

impl Sub<&usize> for &usize

§

type Output = <usize as Sub>::Output

source§

impl Sub<&usize> for &BigInt

source§

impl Sub<&usize> for &num_bigint::biguint::BigUint

source§

impl Sub<&usize> for usize

§

type Output = <usize as Sub>::Output

source§

impl Sub<&usize> for BigInt

source§

impl Sub<&usize> for num_bigint::biguint::BigUint

1.74.0 · source§

impl Sub<&Saturating<i8>> for &Saturating<i8>

1.74.0 · source§

impl Sub<&Saturating<i8>> for Saturating<i8>

1.74.0 · source§

impl Sub<&Saturating<i16>> for &Saturating<i16>

1.74.0 · source§

impl Sub<&Saturating<i16>> for Saturating<i16>

1.74.0 · source§

impl Sub<&Saturating<i32>> for &Saturating<i32>

1.74.0 · source§

impl Sub<&Saturating<i32>> for Saturating<i32>

1.74.0 · source§

impl Sub<&Saturating<i64>> for &Saturating<i64>

1.74.0 · source§

impl Sub<&Saturating<i64>> for Saturating<i64>

1.74.0 · source§

impl Sub<&Saturating<i128>> for &Saturating<i128>

1.74.0 · source§

impl Sub<&Saturating<i128>> for Saturating<i128>

1.74.0 · source§

impl Sub<&Saturating<isize>> for &Saturating<isize>

1.74.0 · source§

impl Sub<&Saturating<isize>> for Saturating<isize>

1.74.0 · source§

impl Sub<&Saturating<u8>> for &Saturating<u8>

1.74.0 · source§

impl Sub<&Saturating<u8>> for Saturating<u8>

1.74.0 · source§

impl Sub<&Saturating<u16>> for &Saturating<u16>

1.74.0 · source§

impl Sub<&Saturating<u16>> for Saturating<u16>

1.74.0 · source§

impl Sub<&Saturating<u32>> for &Saturating<u32>

1.74.0 · source§

impl Sub<&Saturating<u32>> for Saturating<u32>

1.74.0 · source§

impl Sub<&Saturating<u64>> for &Saturating<u64>

1.74.0 · source§

impl Sub<&Saturating<u64>> for Saturating<u64>

1.74.0 · source§

impl Sub<&Saturating<u128>> for &Saturating<u128>

1.74.0 · source§

impl Sub<&Saturating<u128>> for Saturating<u128>

1.74.0 · source§

impl Sub<&Saturating<usize>> for &Saturating<usize>

1.74.0 · source§

impl Sub<&Saturating<usize>> for Saturating<usize>

1.14.0 · source§

impl Sub<&Wrapping<i8>> for &Wrapping<i8>

§

type Output = <Wrapping<i8> as Sub>::Output

1.14.0 · source§

impl Sub<&Wrapping<i8>> for Wrapping<i8>

§

type Output = <Wrapping<i8> as Sub>::Output

1.14.0 · source§

impl Sub<&Wrapping<i16>> for &Wrapping<i16>

1.14.0 · source§

impl Sub<&Wrapping<i16>> for Wrapping<i16>

1.14.0 · source§

impl Sub<&Wrapping<i32>> for &Wrapping<i32>

1.14.0 · source§

impl Sub<&Wrapping<i32>> for Wrapping<i32>

1.14.0 · source§

impl Sub<&Wrapping<i64>> for &Wrapping<i64>

1.14.0 · source§

impl Sub<&Wrapping<i64>> for Wrapping<i64>

1.14.0 · source§

impl Sub<&Wrapping<i128>> for &Wrapping<i128>

1.14.0 · source§

impl Sub<&Wrapping<i128>> for Wrapping<i128>

1.14.0 · source§

impl Sub<&Wrapping<isize>> for &Wrapping<isize>

1.14.0 · source§

impl Sub<&Wrapping<isize>> for Wrapping<isize>

1.14.0 · source§

impl Sub<&Wrapping<u8>> for &Wrapping<u8>

§

type Output = <Wrapping<u8> as Sub>::Output

1.14.0 · source§

impl Sub<&Wrapping<u8>> for Wrapping<u8>

§

type Output = <Wrapping<u8> as Sub>::Output

1.14.0 · source§

impl Sub<&Wrapping<u16>> for &Wrapping<u16>

1.14.0 · source§

impl Sub<&Wrapping<u16>> for Wrapping<u16>

1.14.0 · source§

impl Sub<&Wrapping<u32>> for &Wrapping<u32>

1.14.0 · source§

impl Sub<&Wrapping<u32>> for Wrapping<u32>

1.14.0 · source§

impl Sub<&Wrapping<u64>> for &Wrapping<u64>

1.14.0 · source§

impl Sub<&Wrapping<u64>> for Wrapping<u64>

1.14.0 · source§

impl Sub<&Wrapping<u128>> for &Wrapping<u128>

1.14.0 · source§

impl Sub<&Wrapping<u128>> for Wrapping<u128>

1.14.0 · source§

impl Sub<&Wrapping<usize>> for &Wrapping<usize>

1.14.0 · source§

impl Sub<&Wrapping<usize>> for Wrapping<usize>

source§

impl Sub<&BigInt> for &i8

source§

impl Sub<&BigInt> for &i16

source§

impl Sub<&BigInt> for &i32

source§

impl Sub<&BigInt> for &i64

source§

impl Sub<&BigInt> for &i128

source§

impl Sub<&BigInt> for &isize

source§

impl Sub<&BigInt> for &u8

source§

impl Sub<&BigInt> for &u16

source§

impl Sub<&BigInt> for &u32

source§

impl Sub<&BigInt> for &u64

source§

impl Sub<&BigInt> for &u128

source§

impl Sub<&BigInt> for &usize

source§

impl Sub<&BigInt> for &BigInt

source§

impl Sub<&BigInt> for i8

source§

impl Sub<&BigInt> for i16

source§

impl Sub<&BigInt> for i32

source§

impl Sub<&BigInt> for i64

source§

impl Sub<&BigInt> for i128

source§

impl Sub<&BigInt> for isize

source§

impl Sub<&BigInt> for u8

source§

impl Sub<&BigInt> for u16

source§

impl Sub<&BigInt> for u32

source§

impl Sub<&BigInt> for u64

source§

impl Sub<&BigInt> for u128

source§

impl Sub<&BigInt> for usize

source§

impl Sub<&BigInt> for BigInt

source§

impl Sub<&BigUint> for &u8

source§

impl Sub<&BigUint> for &u16

source§

impl Sub<&BigUint> for &u32

source§

impl Sub<&BigUint> for &u64

source§

impl Sub<&BigUint> for &u128

source§

impl Sub<&BigUint> for &usize

source§

impl Sub<&BigUint> for &num_bigint::biguint::BigUint

source§

impl Sub<&BigUint> for u8

source§

impl Sub<&BigUint> for u16

source§

impl Sub<&BigUint> for u32

source§

impl Sub<&BigUint> for u64

source§

impl Sub<&BigUint> for u128

source§

impl Sub<&BigUint> for usize

source§

impl Sub<&BigUint> for num_bigint::biguint::BigUint

source§

impl Sub<i8> for &BigInt

source§

impl Sub<i8> for BigInt

source§

impl Sub<i16> for &BigInt

source§

impl Sub<i16> for BigInt

source§

impl Sub<i32> for &BigInt

source§

impl Sub<i32> for BigInt

source§

impl Sub<i64> for &BigInt

source§

impl Sub<i64> for BigInt

source§

impl Sub<i128> for &BigInt

source§

impl Sub<i128> for BigInt

source§

impl Sub<isize> for &BigInt

source§

impl Sub<isize> for BigInt

source§

impl Sub<u8> for &BigInt

source§

impl Sub<u8> for &num_bigint::biguint::BigUint

source§

impl Sub<u8> for BigInt

source§

impl Sub<u8> for num_bigint::biguint::BigUint

source§

impl Sub<u16> for &BigInt

source§

impl Sub<u16> for &num_bigint::biguint::BigUint

source§

impl Sub<u16> for BigInt

source§

impl Sub<u16> for num_bigint::biguint::BigUint

source§

impl Sub<u32> for &BigInt

source§

impl Sub<u32> for &num_bigint::biguint::BigUint

source§

impl Sub<u32> for BigInt

source§

impl Sub<u32> for num_bigint::biguint::BigUint

source§

impl Sub<u64> for &BigInt

source§

impl Sub<u64> for &num_bigint::biguint::BigUint

source§

impl Sub<u64> for BigInt

source§

impl Sub<u64> for num_bigint::biguint::BigUint

source§

impl Sub<u128> for &BigInt

source§

impl Sub<u128> for &num_bigint::biguint::BigUint

source§

impl Sub<u128> for BigInt

source§

impl Sub<u128> for num_bigint::biguint::BigUint

source§

impl Sub<usize> for &BigInt

source§

impl Sub<usize> for &num_bigint::biguint::BigUint

source§

impl Sub<usize> for BigInt

source§

impl Sub<usize> for num_bigint::biguint::BigUint

1.8.0 · source§

impl Sub<Duration> for gclient::ext::sp_runtime::scale_info::prelude::time::Instant

1.8.0 · source§

impl Sub<Duration> for SystemTime

source§

impl Sub<Duration> for NaiveDateTime

Subtract std::time::Duration from NaiveDateTime.

As a part of Chrono’s [leap second handling] the subtraction assumes that there is no leap second ever, except when the NaiveDateTime itself represents a leap second in which case the assumption becomes that there is exactly a single leap second ever.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDateTime::checked_sub_signed to get an Option instead.

source§

impl Sub<Duration> for NaiveTime

Subtract std::time::Duration from NaiveTime.

This wraps around and never overflows or underflows. In particular the subtraction ignores integral number of days.

§

impl Sub<Duration> for Instant

§

type Output = Instant

source§

impl Sub<Months> for NaiveDate

Subtract Months from NaiveDate.

The result will be clamped to valid days in the resulting month, see checked_sub_months for details.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDate::checked_sub_months to get an Option instead.

§Example

use chrono::{Months, NaiveDate};

let from_ymd = |y, m, d| NaiveDate::from_ymd_opt(y, m, d).unwrap();

assert_eq!(from_ymd(2014, 1, 1) - Months::new(11), from_ymd(2013, 2, 1));
assert_eq!(from_ymd(2014, 1, 1) - Months::new(12), from_ymd(2013, 1, 1));
assert_eq!(from_ymd(2014, 1, 1) - Months::new(13), from_ymd(2012, 12, 1));
source§

impl Sub<Months> for NaiveDateTime

Subtract Months from NaiveDateTime.

The result will be clamped to valid days in the resulting month, see NaiveDateTime::checked_sub_months for details.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDateTime::checked_sub_months to get an Option instead.

§Example

use chrono::{Months, NaiveDate};

assert_eq!(
    NaiveDate::from_ymd_opt(2014, 01, 01).unwrap().and_hms_opt(01, 00, 00).unwrap()
        - Months::new(11),
    NaiveDate::from_ymd_opt(2013, 02, 01).unwrap().and_hms_opt(01, 00, 00).unwrap()
);
assert_eq!(
    NaiveDate::from_ymd_opt(2014, 01, 01).unwrap().and_hms_opt(00, 02, 00).unwrap()
        - Months::new(12),
    NaiveDate::from_ymd_opt(2013, 01, 01).unwrap().and_hms_opt(00, 02, 00).unwrap()
);
assert_eq!(
    NaiveDate::from_ymd_opt(2014, 01, 01).unwrap().and_hms_opt(00, 00, 03).unwrap()
        - Months::new(13),
    NaiveDate::from_ymd_opt(2012, 12, 01).unwrap().and_hms_opt(00, 00, 03).unwrap()
);
source§

impl Sub<Days> for NaiveDate

Subtract Days from NaiveDate.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDate::checked_sub_days to get an Option instead.

source§

impl Sub<Days> for NaiveDateTime

Subtract Days from NaiveDateTime.

§Panics

Panics if the resulting date would be out of range. Consider using checked_sub_days to get an Option instead.

source§

impl Sub<FixedOffset> for NaiveDateTime

Subtract FixedOffset from NaiveDateTime.

§Panics

Panics if the resulting date would be out of range. Consider using checked_sub_offset to get an Option instead.

source§

impl Sub<FixedOffset> for NaiveTime

Subtract FixedOffset from NaiveTime.

This wraps around and never overflows or underflows. In particular the subtraction ignores integral number of days.

source§

impl Sub<TimeDelta> for NaiveDate

Subtract TimeDelta from NaiveDate.

This discards the fractional days in TimeDelta, rounding to the closest integral number of days towards TimeDelta::zero(). It is the same as the addition with a negated TimeDelta.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDate::checked_sub_signed to get an Option instead.

§Example

use chrono::{NaiveDate, TimeDelta};

let from_ymd = |y, m, d| NaiveDate::from_ymd_opt(y, m, d).unwrap();

assert_eq!(from_ymd(2014, 1, 1) - TimeDelta::zero(), from_ymd(2014, 1, 1));
assert_eq!(from_ymd(2014, 1, 1) - TimeDelta::try_seconds(86399).unwrap(), from_ymd(2014, 1, 1));
assert_eq!(
    from_ymd(2014, 1, 1) - TimeDelta::try_seconds(-86399).unwrap(),
    from_ymd(2014, 1, 1)
);
assert_eq!(from_ymd(2014, 1, 1) - TimeDelta::try_days(1).unwrap(), from_ymd(2013, 12, 31));
assert_eq!(from_ymd(2014, 1, 1) - TimeDelta::try_days(-1).unwrap(), from_ymd(2014, 1, 2));
assert_eq!(from_ymd(2014, 1, 1) - TimeDelta::try_days(364).unwrap(), from_ymd(2013, 1, 2));
assert_eq!(
    from_ymd(2014, 1, 1) - TimeDelta::try_days(365 * 4 + 1).unwrap(),
    from_ymd(2010, 1, 1)
);
assert_eq!(
    from_ymd(2014, 1, 1) - TimeDelta::try_days(365 * 400 + 97).unwrap(),
    from_ymd(1614, 1, 1)
);
source§

impl Sub<TimeDelta> for NaiveDateTime

Subtract TimeDelta from NaiveDateTime.

This is the same as the addition with a negated TimeDelta.

As a part of Chrono’s leap second handling the subtraction assumes that there is no leap second ever, except when the NaiveDateTime itself represents a leap second in which case the assumption becomes that there is exactly a single leap second ever.

§Panics

Panics if the resulting date would be out of range. Consider using NaiveDateTime::checked_sub_signed to get an Option instead.

§Example

use chrono::{NaiveDate, TimeDelta};

let from_ymd = |y, m, d| NaiveDate::from_ymd_opt(y, m, d).unwrap();

let d = from_ymd(2016, 7, 8);
let hms = |h, m, s| d.and_hms_opt(h, m, s).unwrap();
assert_eq!(hms(3, 5, 7) - TimeDelta::zero(), hms(3, 5, 7));
assert_eq!(hms(3, 5, 7) - TimeDelta::try_seconds(1).unwrap(), hms(3, 5, 6));
assert_eq!(hms(3, 5, 7) - TimeDelta::try_seconds(-1).unwrap(), hms(3, 5, 8));
assert_eq!(hms(3, 5, 7) - TimeDelta::try_seconds(3600 + 60).unwrap(), hms(2, 4, 7));
assert_eq!(
    hms(3, 5, 7) - TimeDelta::try_seconds(86_400).unwrap(),
    from_ymd(2016, 7, 7).and_hms_opt(3, 5, 7).unwrap()
);
assert_eq!(
    hms(3, 5, 7) - TimeDelta::try_days(365).unwrap(),
    from_ymd(2015, 7, 9).and_hms_opt(3, 5, 7).unwrap()
);

let hmsm = |h, m, s, milli| d.and_hms_milli_opt(h, m, s, milli).unwrap();
assert_eq!(hmsm(3, 5, 7, 450) - TimeDelta::try_milliseconds(670).unwrap(), hmsm(3, 5, 6, 780));

Leap seconds are handled, but the subtraction assumes that it is the only leap second happened.

let leap = hmsm(3, 5, 59, 1_300);
assert_eq!(leap - TimeDelta::zero(), hmsm(3, 5, 59, 1_300));
assert_eq!(leap - TimeDelta::try_milliseconds(200).unwrap(), hmsm(3, 5, 59, 1_100));
assert_eq!(leap - TimeDelta::try_milliseconds(500).unwrap(), hmsm(3, 5, 59, 800));
assert_eq!(leap - TimeDelta::try_seconds(60).unwrap(), hmsm(3, 5, 0, 300));
assert_eq!(leap - TimeDelta::try_days(1).unwrap(),
           from_ymd(2016, 7, 7).and_hms_milli_opt(3, 6, 0, 300).unwrap());
source§

impl Sub<TimeDelta> for NaiveTime

Subtract TimeDelta from NaiveTime.

This wraps around and never overflows or underflows. In particular the subtraction ignores integral number of days. This is the same as addition with a negated TimeDelta.

As a part of Chrono’s leap second handling, the subtraction assumes that there is no leap second ever, except when the NaiveTime itself represents a leap second in which case the assumption becomes that there is exactly a single leap second ever.

§Example

use chrono::{NaiveTime, TimeDelta};

let from_hmsm = |h, m, s, milli| NaiveTime::from_hms_milli_opt(h, m, s, milli).unwrap();

assert_eq!(from_hmsm(3, 5, 7, 0) - TimeDelta::zero(), from_hmsm(3, 5, 7, 0));
assert_eq!(from_hmsm(3, 5, 7, 0) - TimeDelta::try_seconds(1).unwrap(), from_hmsm(3, 5, 6, 0));
assert_eq!(
    from_hmsm(3, 5, 7, 0) - TimeDelta::try_seconds(60 + 5).unwrap(),
    from_hmsm(3, 4, 2, 0)
);
assert_eq!(
    from_hmsm(3, 5, 7, 0) - TimeDelta::try_seconds(2 * 60 * 60 + 6 * 60).unwrap(),
    from_hmsm(0, 59, 7, 0)
);
assert_eq!(
    from_hmsm(3, 5, 7, 0) - TimeDelta::try_milliseconds(80).unwrap(),
    from_hmsm(3, 5, 6, 920)
);
assert_eq!(
    from_hmsm(3, 5, 7, 950) - TimeDelta::try_milliseconds(280).unwrap(),
    from_hmsm(3, 5, 7, 670)
);

The subtraction wraps around.

assert_eq!(from_hmsm(3, 5, 7, 0) - TimeDelta::try_seconds(8*60*60).unwrap(), from_hmsm(19, 5, 7, 0));
assert_eq!(from_hmsm(3, 5, 7, 0) - TimeDelta::try_days(800).unwrap(), from_hmsm(3, 5, 7, 0));

Leap seconds are handled, but the subtraction assumes that it is the only leap second happened.

let leap = from_hmsm(3, 5, 59, 1_300);
assert_eq!(leap - TimeDelta::zero(), from_hmsm(3, 5, 59, 1_300));
assert_eq!(leap - TimeDelta::try_milliseconds(200).unwrap(), from_hmsm(3, 5, 59, 1_100));
assert_eq!(leap - TimeDelta::try_milliseconds(500).unwrap(), from_hmsm(3, 5, 59, 800));
assert_eq!(leap - TimeDelta::try_seconds(60).unwrap(), from_hmsm(3, 5, 0, 300));
assert_eq!(leap - TimeDelta::try_days(1).unwrap(), from_hmsm(3, 6, 0, 300));
source§

impl Sub<BigInt> for &i8

source§

impl Sub<BigInt> for &i16

source§

impl Sub<BigInt> for &i32

source§

impl Sub<BigInt> for &i64

source§

impl Sub<BigInt> for &i128

source§

impl Sub<BigInt> for &isize

source§

impl Sub<BigInt> for &u8

source§

impl Sub<BigInt> for &u16

source§

impl Sub<BigInt> for &u32

source§

impl Sub<BigInt> for &u64

source§

impl Sub<BigInt> for &u128

source§

impl Sub<BigInt> for &usize

source§

impl Sub<BigInt> for &BigInt

source§

impl Sub<BigInt> for i8

source§

impl Sub<BigInt> for i16

source§

impl Sub<BigInt> for i32

source§

impl Sub<BigInt> for i64

source§

impl Sub<BigInt> for i128

source§

impl Sub<BigInt> for isize

source§

impl Sub<BigInt> for u8

source§

impl Sub<BigInt> for u16

source§

impl Sub<BigInt> for u32

source§

impl Sub<BigInt> for u64

source§

impl Sub<BigInt> for u128

source§

impl Sub<BigInt> for usize

source§

impl Sub<BigUint> for &u8

source§

impl Sub<BigUint> for &u16

source§

impl Sub<BigUint> for &u32

source§

impl Sub<BigUint> for &u64

source§

impl Sub<BigUint> for &u128

source§

impl Sub<BigUint> for &usize

source§

impl Sub<BigUint> for &num_bigint::biguint::BigUint

source§

impl Sub<BigUint> for u8

source§

impl Sub<BigUint> for u16

source§

impl Sub<BigUint> for u32

source§

impl Sub<BigUint> for u64

source§

impl Sub<BigUint> for u128

source§

impl Sub<BigUint> for usize

source§

impl Sub<B0> for UTerm

UTerm - B0 = Term

source§

impl Sub<B1> for UInt<UTerm, B1>

UInt<UTerm, B1> - B1 = UTerm

source§

impl<'a> Sub<f32> for &'a f32

§

type Output = <f32 as Sub>::Output

source§

impl<'a> Sub<f64> for &'a f64

§

type Output = <f64 as Sub>::Output

source§

impl<'a> Sub<i8> for &'a i8

§

type Output = <i8 as Sub>::Output

source§

impl<'a> Sub<i16> for &'a i16

§

type Output = <i16 as Sub>::Output

source§

impl<'a> Sub<i32> for &'a i32

§

type Output = <i32 as Sub>::Output

source§

impl<'a> Sub<i64> for &'a i64

§

type Output = <i64 as Sub>::Output

source§

impl<'a> Sub<i128> for &'a i128

§

type Output = <i128 as Sub>::Output

source§

impl<'a> Sub<isize> for &'a isize

§

type Output = <isize as Sub>::Output

source§

impl<'a> Sub<u8> for &'a u8

§

type Output = <u8 as Sub>::Output

source§

impl<'a> Sub<u16> for &'a u16

§

type Output = <u16 as Sub>::Output

source§

impl<'a> Sub<u32> for &'a u32

§

type Output = <u32 as Sub>::Output

source§

impl<'a> Sub<u64> for &'a u64

§

type Output = <u64 as Sub>::Output

source§

impl<'a> Sub<u128> for &'a u128

§

type Output = <u128 as Sub>::Output

source§

impl<'a> Sub<usize> for &'a usize

§

type Output = <usize as Sub>::Output

1.74.0 · source§

impl<'a> Sub<Saturating<i8>> for &'a Saturating<i8>

1.74.0 · source§

impl<'a> Sub<Saturating<i16>> for &'a Saturating<i16>

1.74.0 · source§

impl<'a> Sub<Saturating<i32>> for &'a Saturating<i32>

1.74.0 · source§

impl<'a> Sub<Saturating<i64>> for &'a Saturating<i64>

1.74.0 · source§

impl<'a> Sub<Saturating<i128>> for &'a Saturating<i128>

1.74.0 · source§

impl<'a> Sub<Saturating<isize>> for &'a Saturating<isize>

1.74.0 · source§

impl<'a> Sub<Saturating<u8>> for &'a Saturating<u8>

1.74.0 · source§

impl<'a> Sub<Saturating<u16>> for &'a Saturating<u16>

1.74.0 · source§

impl<'a> Sub<Saturating<u32>> for &'a Saturating<u32>

1.74.0 · source§

impl<'a> Sub<Saturating<u64>> for &'a Saturating<u64>

1.74.0 · source§

impl<'a> Sub<Saturating<u128>> for &'a Saturating<u128>

1.74.0 · source§

impl<'a> Sub<Saturating<usize>> for &'a Saturating<usize>

1.14.0 · source§

impl<'a> Sub<Wrapping<i8>> for &'a Wrapping<i8>

§

type Output = <Wrapping<i8> as Sub>::Output

1.14.0 · source§

impl<'a> Sub<Wrapping<i16>> for &'a Wrapping<i16>

1.14.0 · source§

impl<'a> Sub<Wrapping<i32>> for &'a Wrapping<i32>

1.14.0 · source§

impl<'a> Sub<Wrapping<i64>> for &'a Wrapping<i64>

1.14.0 · source§

impl<'a> Sub<Wrapping<i128>> for &'a Wrapping<i128>

1.14.0 · source§

impl<'a> Sub<Wrapping<isize>> for &'a Wrapping<isize>

1.14.0 · source§

impl<'a> Sub<Wrapping<u8>> for &'a Wrapping<u8>

§

type Output = <Wrapping<u8> as Sub>::Output

1.14.0 · source§

impl<'a> Sub<Wrapping<u16>> for &'a Wrapping<u16>

1.14.0 · source§

impl<'a> Sub<Wrapping<u32>> for &'a Wrapping<u32>

1.14.0 · source§

impl<'a> Sub<Wrapping<u64>> for &'a Wrapping<u64>

1.14.0 · source§

impl<'a> Sub<Wrapping<u128>> for &'a Wrapping<u128>

1.14.0 · source§

impl<'a> Sub<Wrapping<usize>> for &'a Wrapping<usize>

source§

impl<'a> Sub<EdwardsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

source§

impl<'a> Sub<RistrettoPoint> for &'a curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'a> Sub<Scalar> for &'a curve25519_dalek::scalar::Scalar

source§

impl<'a> Sub<EdwardsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

source§

impl<'a> Sub<RistrettoPoint> for &'a curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'a> Sub<Scalar> for &'a curve25519_dalek::scalar::Scalar

§

impl<'a> Sub<EdwardsPoint> for &'a EdwardsPoint

§

type Output = EdwardsPoint

§

impl<'a> Sub<RistrettoPoint> for &'a RistrettoPoint

§

type Output = RistrettoPoint

§

impl<'a> Sub<Scalar> for &'a Scalar

§

type Output = Scalar

source§

impl<'a, 'b> Sub<&'b EdwardsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

source§

impl<'a, 'b> Sub<&'b RistrettoPoint> for &'a curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'a, 'b> Sub<&'b Scalar> for &'a curve25519_dalek::scalar::Scalar

source§

impl<'a, 'b> Sub<&'b EdwardsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

source§

impl<'a, 'b> Sub<&'b RistrettoPoint> for &'a curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'a, 'b> Sub<&'b Scalar> for &'a curve25519_dalek::scalar::Scalar

source§

impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

§

type Output = CompletedPoint

source§

impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

§

type Output = CompletedPoint

§

impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint

§

type Output = CompletedPoint

§

impl<'a, 'b> Sub<&'b EdwardsPoint> for &'a EdwardsPoint

§

type Output = EdwardsPoint

source§

impl<'a, 'b> Sub<&'b ProjectiveNielsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

§

type Output = CompletedPoint

source§

impl<'a, 'b> Sub<&'b ProjectiveNielsPoint> for &'a curve25519_dalek::edwards::EdwardsPoint

§

type Output = CompletedPoint

§

impl<'a, 'b> Sub<&'b ProjectiveNielsPoint> for &'a EdwardsPoint

§

type Output = CompletedPoint

§

impl<'a, 'b> Sub<&'b RistrettoPoint> for &'a RistrettoPoint

§

type Output = RistrettoPoint

§

impl<'a, 'b> Sub<&'b Scalar> for &'a Scalar

§

type Output = Scalar

source§

impl<'a, 'b, T> Sub<&'b Ratio<T>> for &'a Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

source§

impl<'a, 'b, T> Sub<&'b T> for &'a Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

source§

impl<'a, T> Sub<&'a Ratio<T>> for Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

source§

impl<'a, T> Sub<&'a T> for Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

source§

impl<'a, T> Sub<Ratio<T>> for &'a Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

§

impl<'a, T> Sub<T> for &'a U256
where T: Into<U256>,

§

type Output = U256

§

impl<'a, T> Sub<T> for &'a U512
where T: Into<U512>,

§

type Output = U512

source§

impl<'a, T> Sub<T> for &'a Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

§

impl<'a, T> Sub<T> for &'a U128
where T: Into<U128>,

§

type Output = U128

source§

impl<'b> Sub<&'b EdwardsPoint> for curve25519_dalek::edwards::EdwardsPoint

source§

impl<'b> Sub<&'b RistrettoPoint> for curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'b> Sub<&'b Scalar> for curve25519_dalek::scalar::Scalar

source§

impl<'b> Sub<&'b EdwardsPoint> for curve25519_dalek::edwards::EdwardsPoint

source§

impl<'b> Sub<&'b RistrettoPoint> for curve25519_dalek::ristretto::RistrettoPoint

source§

impl<'b> Sub<&'b Scalar> for curve25519_dalek::scalar::Scalar

§

impl<'b> Sub<&'b EdwardsPoint> for EdwardsPoint

§

type Output = EdwardsPoint

§

impl<'b> Sub<&'b RistrettoPoint> for RistrettoPoint

§

type Output = RistrettoPoint

§

impl<'b> Sub<&'b Scalar> for Scalar

§

type Output = Scalar

source§

impl<'lhs, 'rhs, T, const N: usize> Sub<&'rhs Simd<T, N>> for &'lhs Simd<T, N>
where T: SimdElement, Simd<T, N>: Sub<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<T, N>

source§

impl<T> Sub for Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

§

impl<T> Sub<T> for U256
where T: Into<U256>,

§

type Output = U256

§

impl<T> Sub<T> for U512
where T: Into<U512>,

§

type Output = U512

source§

impl<T> Sub<T> for Ratio<T>
where T: Clone + Integer,

§

type Output = Ratio<T>

§

impl<T> Sub<T> for Bytes
where T: Into<Bytes>,

§

type Output = Bytes

§

impl<T> Sub<T> for F32
where T: Into<F32>,

§

type Output = F32

§

impl<T> Sub<T> for F64
where T: Into<F64>,

§

type Output = F64

§

impl<T> Sub<T> for Pages
where T: Into<Pages>,

§

type Output = Pages

§

impl<T> Sub<T> for Pages
where T: Into<Pages>,

§

type Output = Pages

§

impl<T> Sub<T> for U128
where T: Into<U128>,

§

type Output = U128

§

impl<T> Sub<T> for Words
where T: Into<Words>,

§

type Output = Words

§

impl<T> Sub<T> for Words
where T: Into<Words>,

§

type Output = Words

source§

impl<T, A> Sub<&BTreeSet<T, A>> for &BTreeSet<T, A>
where T: Ord + Clone, A: Allocator + Clone,

§

type Output = BTreeSet<T, A>

source§

impl<T, S1, S2> Sub<&IndexSet<T, S2>> for &indexmap::set::IndexSet<T, S1>
where T: Eq + Hash + Clone, S1: BuildHasher + Default, S2: BuildHasher,

§

type Output = IndexSet<T, S1>

§

impl<T, S1, S2> Sub<&IndexSet<T, S2>> for &IndexSet<T, S1>
where T: Eq + Hash + Clone, S1: BuildHasher + Default, S2: BuildHasher,

§

type Output = IndexSet<T, S1>

source§

impl<T, S> Sub<&HashSet<T, S>> for &std::collections::hash::set::HashSet<T, S>
where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = HashSet<T, S>

§

impl<T, S> Sub<&AHashSet<T, S>> for &AHashSet<T, S>
where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = AHashSet<T, S>

§

impl<T, S> Sub<&HashSet<T, S>> for &HashSet<T, S>
where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = HashSet<T, S>

§

impl<T, S> Sub<&HashSet<T, S>> for &HashSet<T, S>
where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = HashSet<T, S>

§

impl<T, S> Sub<&HashSet<T, S>> for &HashSet<T, S>
where T: Eq + Hash + Clone, S: BuildHasher + Default,

§

type Output = HashSet<T, S>

source§

impl<T, const N: usize> Sub<&Simd<T, N>> for Simd<T, N>
where T: SimdElement, Simd<T, N>: Sub<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<T, N>

source§

impl<T, const N: usize> Sub<Simd<T, N>> for &Simd<T, N>
where T: SimdElement, Simd<T, N>: Sub<Output = Simd<T, N>>, LaneCount<N>: SupportedLaneCount,

§

type Output = Simd<T, N>

source§

impl<Tz> Sub for Date<Tz>
where Tz: TimeZone,

source§

impl<Tz> Sub for DateTime<Tz>
where Tz: TimeZone,

source§

impl<Tz> Sub<&DateTime<Tz>> for DateTime<Tz>
where Tz: TimeZone,

source§

impl<Tz> Sub<Duration> for DateTime<Tz>
where Tz: TimeZone,

Subtract std::time::Duration from DateTime.

As a part of Chrono’s [leap second handling] the subtraction assumes that there is no leap second ever, except when the DateTime itself represents a leap second in which case the assumption becomes that there is exactly a single leap second ever.

§Panics

Panics if the resulting date would be out of range. Consider using DateTime<Tz>::checked_sub_signed to get an Option instead.

§

type Output = DateTime<Tz>

source§

impl<Tz> Sub<Months> for DateTime<Tz>
where Tz: TimeZone,

Subtract Months from DateTime.

The result will be clamped to valid days in the resulting month, see DateTime<Tz>::checked_sub_months for details.

§Panics

Panics if:

  • The resulting date would be out of range.
  • The local time at the resulting date does not exist or is ambiguous, for example during a daylight saving time transition.

Strongly consider using DateTime<Tz>::checked_sub_months to get an Option instead.

§

type Output = DateTime<Tz>

source§

impl<Tz> Sub<Days> for DateTime<Tz>
where Tz: TimeZone,

Subtract Days from DateTime.

§Panics

Panics if:

  • The resulting date would be out of range.
  • The local time at the resulting date does not exist or is ambiguous, for example during a daylight saving time transition.

Strongly consider using DateTime<Tz>::checked_sub_days to get an Option instead.

§

type Output = DateTime<Tz>

source§

impl<Tz> Sub<FixedOffset> for DateTime<Tz>
where Tz: TimeZone,

Subtract FixedOffset from the datetime value of DateTime (offset remains unchanged).

§Panics

Panics if the resulting date would be out of range.

§

type Output = DateTime<Tz>

source§

impl<Tz> Sub<TimeDelta> for Date<Tz>
where Tz: TimeZone,

§

type Output = Date<Tz>

source§

impl<Tz> Sub<TimeDelta> for DateTime<Tz>
where Tz: TimeZone,

Subtract TimeDelta from DateTime.

This is the same as the addition with a negated TimeDelta.

As a part of Chrono’s [leap second handling] the subtraction assumes that there is no leap second ever, except when the DateTime itself represents a leap second in which case the assumption becomes that there is exactly a single leap second ever.

§Panics

Panics if the resulting date would be out of range. Consider using DateTime<Tz>::checked_sub_signed to get an Option instead.

§

type Output = DateTime<Tz>

source§

impl<U> Sub<B1> for UInt<U, B0>
where U: Unsigned + Sub<B1>, <U as Sub<B1>>::Output: Unsigned,

UInt<U, B0> - B1 = UInt<U - B1, B1>

§

type Output = UInt<<U as Sub<B1>>::Output, B1>

source§

impl<U> Sub<NInt<U>> for Z0
where U: Unsigned + NonZero,

Z0 - N = P

§

type Output = PInt<U>

source§

impl<U> Sub<PInt<U>> for Z0
where U: Unsigned + NonZero,

Z0 - P = N

§

type Output = NInt<U>

source§

impl<U> Sub<Z0> for NInt<U>
where U: Unsigned + NonZero,

NInt - Z0 = NInt

§

type Output = NInt<U>

source§

impl<U> Sub<Z0> for PInt<U>
where U: Unsigned + NonZero,

PInt - Z0 = PInt

§

type Output = PInt<U>

source§

impl<U, B> Sub<B0> for UInt<U, B>
where U: Unsigned, B: Bit,

UInt - B0 = UInt

§

type Output = UInt<U, B>

source§

impl<U, B> Sub<B1> for UInt<UInt<U, B>, B1>
where U: Unsigned, B: Bit,

UInt<U, B1> - B1 = UInt<U, B0>

§

type Output = UInt<UInt<U, B>, B0>

source§

impl<Ul, Bl, Ur> Sub<Ur> for UInt<Ul, Bl>
where Ul: Unsigned, Bl: Bit, Ur: Unsigned, UInt<Ul, Bl>: PrivateSub<Ur>, <UInt<Ul, Bl> as PrivateSub<Ur>>::Output: Trim,

Subtracting unsigned integers. We just do our PrivateSub and then Trim the output.

§

type Output = <<UInt<Ul, Bl> as PrivateSub<Ur>>::Output as Trim>::Output

source§

impl<Ul, Ur> Sub<NInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero, Ur: Unsigned + NonZero + Cmp<Ul> + PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>,

N(Ul) - N(Ur): We resolve this with our PrivateAdd

§

type Output = <Ur as PrivateIntegerAdd<<Ur as Cmp<Ul>>::Output, Ul>>::Output

source§

impl<Ul, Ur> Sub<NInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

P(Ul) - N(Ur) = P(Ul + Ur)

§

type Output = PInt<<Ul as Add<Ur>>::Output>

source§

impl<Ul, Ur> Sub<PInt<Ur>> for NInt<Ul>
where Ul: Unsigned + NonZero + Add<Ur>, Ur: Unsigned + NonZero, <Ul as Add<Ur>>::Output: Unsigned + NonZero,

N(Ul) - P(Ur) = N(Ul + Ur)

§

type Output = NInt<<Ul as Add<Ur>>::Output>

source§

impl<Ul, Ur> Sub<PInt<Ur>> for PInt<Ul>
where Ul: Unsigned + NonZero + Cmp<Ur> + PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>, Ur: Unsigned + NonZero,

P(Ul) - P(Ur): We resolve this with our PrivateAdd

§

type Output = <Ul as PrivateIntegerAdd<<Ul as Cmp<Ur>>::Output, Ur>>::Output

source§

impl<Vl, Al, Vr, Ar> Sub<TArr<Vr, Ar>> for TArr<Vl, Al>
where Vl: Sub<Vr>, Al: Sub<Ar>,

§

type Output = TArr<<Vl as Sub<Vr>>::Output, <Al as Sub<Ar>>::Output>

source§

impl<const N: usize> Sub for Simd<f32, N>

§

type Output = Simd<f32, N>

source§

impl<const N: usize> Sub for Simd<f64, N>

§

type Output = Simd<f64, N>

source§

impl<const N: usize> Sub for Simd<i8, N>

§

type Output = Simd<i8, N>

source§

impl<const N: usize> Sub for Simd<i16, N>

§

type Output = Simd<i16, N>

source§

impl<const N: usize> Sub for Simd<i32, N>

§

type Output = Simd<i32, N>

source§

impl<const N: usize> Sub for Simd<i64, N>

§

type Output = Simd<i64, N>

source§

impl<const N: usize> Sub for Simd<isize, N>

§

type Output = Simd<isize, N>

source§

impl<const N: usize> Sub for Simd<u8, N>

§

type Output = Simd<u8, N>

source§

impl<const N: usize> Sub for Simd<u16, N>

§

type Output = Simd<u16, N>

source§

impl<const N: usize> Sub for Simd<u32, N>

§

type Output = Simd<u32, N>

source§

impl<const N: usize> Sub for Simd<u64, N>

§

type Output = Simd<u64, N>

source§

impl<const N: usize> Sub for Simd<usize, N>

§

type Output = Simd<usize, N>