mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 01:18:02 +00:00
56 lines
1.1 KiB
Rust
56 lines
1.1 KiB
Rust
// Copyright 2017 Serde Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
#![feature(lang_items, start, panic_implementation)]
|
|
#![no_std]
|
|
|
|
extern crate libc;
|
|
|
|
#[start]
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
|
0
|
|
}
|
|
|
|
#[lang = "eh_personality"]
|
|
#[no_mangle]
|
|
pub extern "C" fn rust_eh_personality() {}
|
|
|
|
#[panic_implementation]
|
|
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
|
unsafe {
|
|
libc::abort();
|
|
}
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Unit;
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Newtype(u8);
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Tuple(u8, u8);
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Struct {
|
|
f: u8,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
enum Enum {
|
|
Unit,
|
|
Newtype(u8),
|
|
Tuple(u8, u8),
|
|
Struct { f: u8 },
|
|
}
|