Skip to main content

serde_shape/impls/
ffi.rs

1// Copyright 2026 FastLabs Developers
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use alloc::boxed::Box;
16use alloc::ffi::CString;
17use core::ffi::CStr;
18
19use crate::DeserializeShape;
20use crate::DeserializeShapeContext;
21use crate::SerializeShape;
22use crate::SerializeShapeContext;
23use crate::ShapeRef;
24
25impl SerializeShape for CStr {
26    fn serialize_shape_in(_context: &mut SerializeShapeContext) -> ShapeRef {
27        ShapeRef::Bytes
28    }
29}
30
31impl SerializeShape for CString {
32    fn serialize_shape_in(_context: &mut SerializeShapeContext) -> ShapeRef {
33        ShapeRef::Bytes
34    }
35}
36
37impl DeserializeShape for CString {
38    fn deserialize_shape_in(_context: &mut DeserializeShapeContext) -> ShapeRef {
39        ShapeRef::Bytes
40    }
41}
42
43impl DeserializeShape for Box<CStr> {
44    fn deserialize_shape_in(_context: &mut DeserializeShapeContext) -> ShapeRef {
45        ShapeRef::Bytes
46    }
47}