Skip to content

Commit ae76211

Browse files
committed
Return Result<Self, Self::Err> in FromStr impls
If we return `Self, Self::Err` then the implementations of `FromStr` are easier to maintain.
1 parent 302ff20 commit ae76211

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/ecdh.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl SharedSecret {
7979

8080
impl str::FromStr for SharedSecret {
8181
type Err = Error;
82-
fn from_str(s: &str) -> Result<SharedSecret, Error> {
82+
fn from_str(s: &str) -> Result<Self, Self::Err> {
8383
let mut res = [0u8; SHARED_SECRET_SIZE];
8484
match crate::from_hex(s, &mut res) {
8585
Ok(SHARED_SECRET_SIZE) => Ok(SharedSecret::from_bytes(res)),

src/ecdsa/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl fmt::Display for Signature {
3737

3838
impl str::FromStr for Signature {
3939
type Err = Error;
40-
fn from_str(s: &str) -> Result<Signature, Error> {
40+
fn from_str(s: &str) -> Result<Self, Self::Err> {
4141
let mut res = [0u8; 72];
4242
match from_hex(s, &mut res) {
4343
Ok(x) => Signature::from_der(&res[0..x]),

src/key.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ impl ffi::CPtr for SecretKey {
111111

112112
impl str::FromStr for SecretKey {
113113
type Err = Error;
114-
fn from_str(s: &str) -> Result<SecretKey, Error> {
114+
fn from_str(s: &str) -> Result<Self, Self::Err> {
115115
let mut res = [0u8; constants::SECRET_KEY_SIZE];
116116
match from_hex(s, &mut res) {
117117
Ok(constants::SECRET_KEY_SIZE) => SecretKey::from_slice(&res),
@@ -164,7 +164,7 @@ impl fmt::Display for PublicKey {
164164

165165
impl str::FromStr for PublicKey {
166166
type Err = Error;
167-
fn from_str(s: &str) -> Result<PublicKey, Error> {
167+
fn from_str(s: &str) -> Result<Self, Self::Err> {
168168
let mut res = [0u8; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE];
169169
match from_hex(s, &mut res) {
170170
Ok(constants::PUBLIC_KEY_SIZE) =>
@@ -1128,7 +1128,7 @@ impl fmt::Display for XOnlyPublicKey {
11281128

11291129
impl str::FromStr for XOnlyPublicKey {
11301130
type Err = Error;
1131-
fn from_str(s: &str) -> Result<XOnlyPublicKey, Error> {
1131+
fn from_str(s: &str) -> Result<Self, Self::Err> {
11321132
let mut res = [0u8; constants::SCHNORR_PUBLIC_KEY_SIZE];
11331133
match from_hex(s, &mut res) {
11341134
Ok(constants::SCHNORR_PUBLIC_KEY_SIZE) =>

src/schnorr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl fmt::Display for Signature {
6464

6565
impl str::FromStr for Signature {
6666
type Err = Error;
67-
fn from_str(s: &str) -> Result<Signature, Error> {
67+
fn from_str(s: &str) -> Result<Self, Self::Err> {
6868
let mut res = [0u8; constants::SCHNORR_SIGNATURE_SIZE];
6969
match from_hex(s, &mut res) {
7070
Ok(constants::SCHNORR_SIGNATURE_SIZE) =>

0 commit comments

Comments
 (0)