mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-08 18:30:40 +00:00
More fully qualified paths
This commit is contained in:
parent
aeb9b2af7b
commit
72ded36093
@ -169,25 +169,25 @@ macro_rules! wrap_impl {
|
||||
(self.$v:ident: $t:ty) => {
|
||||
type V = $t;
|
||||
|
||||
fn with_view<F, R>(&self, f: F) -> std::option::Option<R>
|
||||
fn with_view<F, R>(&self, f: F) -> ::std::option::Option<R>
|
||||
where
|
||||
F: std::ops::FnOnce(&Self::V) -> R,
|
||||
F: ::std::ops::FnOnce(&Self::V) -> R,
|
||||
{
|
||||
std::option::Option::Some(f(&self.$v))
|
||||
::std::option::Option::Some(f(&self.$v))
|
||||
}
|
||||
|
||||
fn with_view_mut<F, R>(&mut self, f: F) -> std::option::Option<R>
|
||||
fn with_view_mut<F, R>(&mut self, f: F) -> ::std::option::Option<R>
|
||||
where
|
||||
F: std::ops::FnOnce(&mut Self::V) -> R,
|
||||
F: ::std::ops::FnOnce(&mut Self::V) -> R,
|
||||
{
|
||||
std::option::Option::Some(f(&mut self.$v))
|
||||
::std::option::Option::Some(f(&mut self.$v))
|
||||
}
|
||||
|
||||
fn into_inner(self) -> std::result::Result<Self::V, Self>
|
||||
fn into_inner(self) -> ::std::result::Result<Self::V, Self>
|
||||
where
|
||||
Self::V: Sized,
|
||||
Self::V: ::std::marker::Sized,
|
||||
{
|
||||
std::result::Result::Ok(self.$v)
|
||||
::std::result::Result::Ok(self.$v)
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user