Skip to content

Commit bf47576

Browse files
authored
feat(rust-only): Introduce MaybeUndefined type to allow for distinguishing between null and undefined (#337)
1 parent 8e3919b commit bf47576

2 files changed

Lines changed: 549 additions & 0 deletions

File tree

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ mod client;
5555
mod content;
5656
mod error;
5757
mod ext;
58+
mod maybe_undefined;
5859
mod plan;
5960
#[cfg(feature = "unstable_cancel_request")]
6061
mod protocol_level;
@@ -68,6 +69,7 @@ pub use content::*;
6869
use derive_more::{Display, From};
6970
pub use error::*;
7071
pub use ext::*;
72+
pub use maybe_undefined::*;
7173
pub use plan::*;
7274
#[cfg(feature = "unstable_cancel_request")]
7375
pub use protocol_level::*;

0 commit comments

Comments
 (0)