Skip to content

Commit

Permalink
fix: remove unsized because Sized is required
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Oct 13, 2024
1 parent 8861b7a commit 1034b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl ::std::convert::TryFrom<::std::string::String> for Timestamp {
#[inline]
fn try_from(s: ::std::string::String) -> Result<Self, Self::Error> {
const fn ensure_try_from_string_error_converts_to_validator_error<
T: ?Sized + From<<String as ::std::convert::TryFrom<::std::string::String>>::Error>,
T: From<<String as ::std::convert::TryFrom<::std::string::String>>::Error>,
>() {
}

Expand Down

0 comments on commit 1034b49

Please sign in to comment.