fxfs_testing/constants.rs
1// Copyright 2027 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// VMO holding blobs served by fxfs have a name starting with this prefix.
6pub const BLOB_NAME_PREFIX: &str = "blob-";
7
8// Length of the hash hex representation appended to the VMO name.
9pub const BLOB_NAME_HASH_LENGTH: usize = 8;