//
// IStringConverter.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Remora.Results;
namespace NosSmooth.PacketSerializer.Abstractions;
///
/// Base type for converting types.
///
public interface IStringConverter
{
///
/// Convert the data from the enumerator to the given type.
///
/// The packet string enumerator with the current position.
/// The deserialization options.
/// The parsed object or an error.
public Result