Skip to content

Commit

Permalink
api: Run just check-api
Browse files Browse the repository at this point in the history
  • Loading branch information
tcharding committed Feb 5, 2025
1 parent bd27670 commit 6435792
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions api/units/all-features.txt
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ pub fn bitcoin_units::Amount::hash<__H: core::hash::Hasher>(&self, state: &mut _
pub fn bitcoin_units::Amount::mul(self, rhs: u64) -> Self::Output
pub fn bitcoin_units::Amount::mul_assign(&mut self, rhs: u64)
pub fn bitcoin_units::Amount::partial_cmp(&self, other: &bitcoin_units::Amount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self::Output
pub fn bitcoin_units::Amount::rem_assign(&mut self, modulus: u64)
pub fn bitcoin_units::Amount::ser_btc<S: serde::ser::Serializer>(self, s: S, _: bitcoin_units::amount::serde::private::Token) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn bitcoin_units::Amount::ser_btc_opt<S: serde::ser::Serializer>(self, s: S, _: bitcoin_units::amount::serde::private::Token) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
Expand Down Expand Up @@ -892,7 +892,7 @@ pub fn bitcoin_units::SignedAmount::mul_assign(&mut self, rhs: i64)
pub fn bitcoin_units::SignedAmount::neg(self) -> Self::Output
pub fn bitcoin_units::SignedAmount::partial_cmp(&self, other: &bitcoin_units::SignedAmount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::SignedAmount::positive_sub(self, rhs: bitcoin_units::SignedAmount) -> core::option::Option<bitcoin_units::SignedAmount>
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self::Output
pub fn bitcoin_units::SignedAmount::rem_assign(&mut self, modulus: i64)
pub fn bitcoin_units::SignedAmount::ser_btc<S: serde::ser::Serializer>(self, s: S, _: bitcoin_units::amount::serde::private::Token) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn bitcoin_units::SignedAmount::ser_btc_opt<S: serde::ser::Serializer>(self, s: S, _: bitcoin_units::amount::serde::private::Token) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
Expand Down
4 changes: 2 additions & 2 deletions api/units/alloc-only.txt
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ pub fn bitcoin_units::Amount::hash<__H: core::hash::Hasher>(&self, state: &mut _
pub fn bitcoin_units::Amount::mul(self, rhs: u64) -> Self::Output
pub fn bitcoin_units::Amount::mul_assign(&mut self, rhs: u64)
pub fn bitcoin_units::Amount::partial_cmp(&self, other: &bitcoin_units::Amount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self::Output
pub fn bitcoin_units::Amount::rem_assign(&mut self, modulus: u64)
pub fn bitcoin_units::Amount::sub(self, rhs: &bitcoin_units::Amount) -> Self::Output
pub fn bitcoin_units::Amount::sub(self, rhs: bitcoin_units::Amount) -> Self::Output
Expand Down Expand Up @@ -815,7 +815,7 @@ pub fn bitcoin_units::SignedAmount::mul_assign(&mut self, rhs: i64)
pub fn bitcoin_units::SignedAmount::neg(self) -> Self::Output
pub fn bitcoin_units::SignedAmount::partial_cmp(&self, other: &bitcoin_units::SignedAmount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::SignedAmount::positive_sub(self, rhs: bitcoin_units::SignedAmount) -> core::option::Option<bitcoin_units::SignedAmount>
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self::Output
pub fn bitcoin_units::SignedAmount::rem_assign(&mut self, modulus: i64)
pub fn bitcoin_units::SignedAmount::signum(self) -> i64
pub fn bitcoin_units::SignedAmount::sub(self, rhs: &bitcoin_units::SignedAmount) -> Self::Output
Expand Down
4 changes: 2 additions & 2 deletions api/units/no-features.txt
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ pub fn bitcoin_units::Amount::hash<__H: core::hash::Hasher>(&self, state: &mut _
pub fn bitcoin_units::Amount::mul(self, rhs: u64) -> Self::Output
pub fn bitcoin_units::Amount::mul_assign(&mut self, rhs: u64)
pub fn bitcoin_units::Amount::partial_cmp(&self, other: &bitcoin_units::Amount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self
pub fn bitcoin_units::Amount::rem(self, modulus: u64) -> Self::Output
pub fn bitcoin_units::Amount::rem_assign(&mut self, modulus: u64)
pub fn bitcoin_units::Amount::sub(self, rhs: &bitcoin_units::Amount) -> Self::Output
pub fn bitcoin_units::Amount::sub(self, rhs: bitcoin_units::Amount) -> Self::Output
Expand Down Expand Up @@ -789,7 +789,7 @@ pub fn bitcoin_units::SignedAmount::mul_assign(&mut self, rhs: i64)
pub fn bitcoin_units::SignedAmount::neg(self) -> Self::Output
pub fn bitcoin_units::SignedAmount::partial_cmp(&self, other: &bitcoin_units::SignedAmount) -> core::option::Option<core::cmp::Ordering>
pub fn bitcoin_units::SignedAmount::positive_sub(self, rhs: bitcoin_units::SignedAmount) -> core::option::Option<bitcoin_units::SignedAmount>
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self
pub fn bitcoin_units::SignedAmount::rem(self, modulus: i64) -> Self::Output
pub fn bitcoin_units::SignedAmount::rem_assign(&mut self, modulus: i64)
pub fn bitcoin_units::SignedAmount::signum(self) -> i64
pub fn bitcoin_units::SignedAmount::sub(self, rhs: &bitcoin_units::SignedAmount) -> Self::Output
Expand Down

0 comments on commit 6435792

Please sign in to comment.