-
-
Notifications
You must be signed in to change notification settings - Fork 16
chore!: Upgrade to kube 3.0.1 and k8s-openapi 0.27.0 #1138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
32ced51
77a529b
a4734e8
dcb6960
dcf9095
9e47828
443d802
4fe70fb
9d6c940
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| use jiff::Span; | ||
|
|
||
| use crate::time::Duration; | ||
|
|
||
| impl TryFrom<Span> for Duration { | ||
| type Error = jiff::Error; | ||
|
|
||
| fn try_from(value: Span) -> Result<Self, Self::Error> { | ||
| let std_duration = std::time::Duration::try_from(value)?; | ||
| Ok(Self::from(std_duration)) | ||
| } | ||
| } | ||
|
|
||
| impl TryFrom<Duration> for Span { | ||
| type Error = jiff::Error; | ||
|
|
||
| fn try_from(value: Duration) -> Result<Self, Self::Error> { | ||
| Span::try_from(Into::<std::time::Duration>::into(value)) | ||
| } | ||
| } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.