Home
last modified time | relevance | path

Searched refs:tuple_form (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime_macros/examples/
H A Dmacro_tuple_form.rs29 …let tuple = ylong_runtime_macros::tuple_form!(( (((0)+1)+1) ) with Out::Fail except Out::Finish at… in main()
32 …let tuple = ylong_runtime_macros::tuple_form!(( (((0)+1)+1) ) with Out::Fail except Out::Finish at… in main()
35 …let tuple = ylong_runtime_macros::tuple_form!(( ((((0)+1)+1)+1) ) with Out::Fail except Out::Finis… in main()
38 …let tuple = ylong_runtime_macros::tuple_form!(( (((((0)+1)+1)+1)+1) ) with Out::Fail except Out::F… in main()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/
H A Dselect.rs235 … return Ready($crate::tuple_form!(($count) with Out::Fail except Out::Finish(out) at ($($_i)*)))
258 … Ready($crate::tuple_form!(($count) with Out::Fail except Out::Fail at ($($_n)*)))
265 … $crate::tuple_form!(($count) with Out::Fail except Out::Finish($bind) at ($($_i)*)) => $handle,
267 $crate::tuple_form!(($count) with Out::Fail except Out::Fail at ($($_n)*)) => $else,
H A Dlib.rs57 pub use ylong_runtime_macros::tuple_form;
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime_macros/src/
H A Dlib.rs38 pub fn tuple_form(input: TokenStream) -> TokenStream { in tuple_form() function