syd 3.52.0

rock-solid application kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// Syd: rock-solid application kernel
// src/mount/mod.rs: Safe mount interface
//
// Copyright (c) 2025 Ali Polatel <alip@chesswob.org>
//
// SPDX-License-Identifier: GPL-3.0

//! Safe mount interface

/// Interface to new Linux mount API
pub mod api;

/// Utilities using the new Linux mount API
pub mod util;