Skip to content

Commit

Permalink
deser: make value::mk_deser_err pub(crate)
Browse files Browse the repository at this point in the history
The `value::mk_deser_err` utility function will be used in
a `deser_cql_value`. We need to increase the visibility scope
of this function.
  • Loading branch information
muzarski committed Jul 1, 2024
1 parent 692f053 commit b3955c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scylla-cql/src/types/deserialize/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ pub struct BuiltinDeserializationError {
pub kind: BuiltinDeserializationErrorKind,
}

fn mk_deser_err<T>(
pub(crate) fn mk_deser_err<T>(
cql_type: &ColumnType,
kind: impl Into<BuiltinDeserializationErrorKind>,
) -> DeserializationError {
Expand Down

0 comments on commit b3955c6

Please sign in to comment.