memfaultc-sys 1.27.0

Supporting crate for the Memfault memfaultd embedded Linux agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Copyright (c) Memfault, Inc.
// See License.txt for details
// main functions

#[cfg(feature = "coredump")]
pub mod coredump;

#[cfg(all(feature = "systemd", not(target_os = "macos")))]
pub mod systemd;
#[cfg(all(feature = "systemd", target_os = "macos"))]
pub mod systemd_mock;

#[cfg(all(feature = "systemd", target_os = "macos"))]
pub use systemd_mock as systemd;

#[cfg(feature = "swupdate")]
pub mod swupdate;