File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -509,10 +509,10 @@ impl Function {
509
509
}
510
510
}
511
511
512
- pub ( crate ) struct WrappedFunction ( pub ( crate ) Callback ) ;
512
+ struct WrappedFunction ( pub ( crate ) Callback ) ;
513
513
514
514
#[ cfg( feature = "async" ) ]
515
- pub ( crate ) struct WrappedAsyncFunction ( pub ( crate ) AsyncCallback ) ;
515
+ struct WrappedAsyncFunction ( pub ( crate ) AsyncCallback ) ;
516
516
517
517
impl Function {
518
518
/// Wraps a Rust function or closure, returning an opaque type that implements [`IntoLua`]
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ impl<'a> IntoIterator for BorrowedBytes<'a> {
368
368
}
369
369
}
370
370
371
- pub ( crate ) struct WrappedString < T : AsRef < [ u8 ] > > ( T ) ;
371
+ struct WrappedString < T : AsRef < [ u8 ] > > ( T ) ;
372
372
373
373
impl String {
374
374
/// Wraps bytes, returning an opaque type that implements [`IntoLua`] trait.
Original file line number Diff line number Diff line change @@ -1073,7 +1073,7 @@ impl Serialize for AnyUserData {
1073
1073
}
1074
1074
}
1075
1075
1076
- pub ( crate ) struct WrappedUserdata < F : FnOnce ( & Lua ) -> Result < AnyUserData > > ( F ) ;
1076
+ struct WrappedUserdata < F : FnOnce ( & Lua ) -> Result < AnyUserData > > ( F ) ;
1077
1077
1078
1078
impl AnyUserData {
1079
1079
/// Wraps any Rust type, returning an opaque type that implements [`IntoLua`] trait.
You can’t perform that action at this time.
0 commit comments